[fix](regression) fix test_primary_key_simple_case (#38798) (#38844)

pick https://github.com/apache/doris/pull/38798
This commit is contained in:
meiyi
2024-08-05 16:32:41 +08:00
committed by GitHub
parent 4c75fecea9
commit 7d4ff34d1f
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ suite("test_primary_key_simple_case") {
(5, '2017-10-01', 'Beijing', 10, 1, NULL, NULL, '2020-01-05', 1, 34, 20)
"""
result = sql """ SELECT * FROM ${tableName} t ORDER BY user_id; """
def result = sql """ SELECT * FROM ${tableName} t ORDER BY user_id; """
assertTrue(result.size() == 5)
assertTrue(result[0].size() == 11)

View File

@ -62,7 +62,7 @@ suite("test_primary_key_simple_case") {
(5, '2017-10-01', 'Beijing', 10, 1, NULL, NULL, '2020-01-05', 1, 34, 20)
"""
result = sql """ SELECT * FROM ${tableName} t ORDER BY user_id; """
def result = sql """ SELECT * FROM ${tableName} t ORDER BY user_id; """
assertTrue(result.size() == 5)
assertTrue(result[0].size() == 11)