Skip to content

Commit

Permalink
add identifier datatype
Browse files Browse the repository at this point in the history
  • Loading branch information
MrNavaStar committed Oct 9, 2023
1 parent 13014ca commit 7d00655
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/mrnavastar/sqlib/sql/SQLDataType.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ public enum SQLDataType {
CHUNKPOS("BIGINT", 255),
JSON("LONGTEXT"),
NBT("LONGTEXT"),
MUTABLE_TEXT("LONGTEXT");
MUTABLE_TEXT("LONGTEXT"),
IDENTIFIER("LONGTEXT");

private final String sqlDataType;
private int size = 0;
Expand Down

0 comments on commit 7d00655

Please sign in to comment.