Skip to content

Commit

Permalink
fix: store the checksum in the database as LOB (#261)
Browse files Browse the repository at this point in the history
* Postgres fails to import processes if the checksum contains a non-UTF8 character
* change the database type of the checksum to LOB to store it as binary data
  • Loading branch information
saig0 authored Jul 7, 2022
1 parent 7ad6719 commit ea4b6d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/src/main/kotlin/io/zeebe/zeeqs/data/entity/Process.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ data class Process(
@Lob val bpmnXML: String,
val deployTime: Long,
val resourceName: String,
val checksum: String)
@Lob val checksum: String)

0 comments on commit ea4b6d9

Please sign in to comment.