From 5ac136fdee07489caf09951ab61d772ce8f8e0bc Mon Sep 17 00:00:00 2001 From: Chris Zhai Date: Wed, 15 May 2024 15:20:20 +0800 Subject: [PATCH] update test cases for TS-4791 --- tests/system-test/1-insert/composite_primary_key_insert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system-test/1-insert/composite_primary_key_insert.py b/tests/system-test/1-insert/composite_primary_key_insert.py index 1a22eb781c..c888bacadc 100644 --- a/tests/system-test/1-insert/composite_primary_key_insert.py +++ b/tests/system-test/1-insert/composite_primary_key_insert.py @@ -31,8 +31,8 @@ class LegalDataType(Enum): UINT = 'INT UNSIGNED' BIGINT = 'BIGINT' UBIGINT = 'BIGINT UNSIGNED' - VARCHAR = 'VARCHAR(100)' - BINARY = 'BINARY(100)' + VARCHAR = 'VARCHAR(10000)' + BINARY = 'BINARY(10000)' class TableType(Enum):