Skip to content

Commit

Permalink
Revert "[CBRD-25713] limit max length of CHAR type to 2048 (#5692)"
Browse files Browse the repository at this point in the history
This reverts commit e560ed5.
  • Loading branch information
hyunikn committed Dec 11, 2024
1 parent e560ed5 commit 053c199
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

public class TypeChar extends Type {

public static final int MAX_LEN = 2048;
public static final int MAX_LEN = 268435455;

public final int length;

Expand Down

0 comments on commit 053c199

Please sign in to comment.