Skip to content

Commit

Permalink
Fix value too long for type character varying (apache#12352)
Browse files Browse the repository at this point in the history
  • Loading branch information
唐衡 committed Jun 21, 2024
1 parent 2603d2b commit 05b2385
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected StorageID id0() {
@Column(name = TYPE)
private String type;

@Column(name = MESSAGE)
@Column(name = MESSAGE, length = 2000)
private String message;

@Column(name = PARAMETERS, storageOnly = true, length = PARAMETER_MAX_LENGTH)
Expand Down

0 comments on commit 05b2385

Please sign in to comment.