update test cases for TS-4791

This commit is contained in:
Chris Zhai 2024-05-15 15:20:20 +08:00
parent 43e018e210
commit 5ac136fdee
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ class LegalDataType(Enum):
UINT = 'INT UNSIGNED' UINT = 'INT UNSIGNED'
BIGINT = 'BIGINT' BIGINT = 'BIGINT'
UBIGINT = 'BIGINT UNSIGNED' UBIGINT = 'BIGINT UNSIGNED'
VARCHAR = 'VARCHAR(100)' VARCHAR = 'VARCHAR(10000)'
BINARY = 'BINARY(100)' BINARY = 'BINARY(10000)'
class TableType(Enum): class TableType(Enum):