Skip to content

Commit 793d92b

Browse files
committed
chore: fix e2e test
1 parent 4dc72d4 commit 793d92b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/sqllogictests/suites/base/09_fuse_engine/09_0001_remote_insert.test

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ CREATE TABLE IF NOT EXISTS t3(a Boolean, b Timestamp, c Date, d Array(Int), e Tu
5050
statement ok
5151
INSERT INTO t3 (a,b,c,d,e,f) values(true, '2021-09-07 21:38:35.000000', '2021-09-07', [1, 2, 3], (10, 'abc'), '2024-10-22 12:00:00+0900'), (false, 1631050715000000, 18877, [4, 5, 6], (20, 'xyz'), '2024-10-22 12:00:00');
5252

53+
# FIXME: After Parser update then remove ::STRING
5354
query BTTTT
54-
SELECT * FROM t3 order by a desc;
55+
SELECT a, b, c, d, e, f::string FROM t3 order by a desc;
5556
----
5657
1 2021-09-07 21:38:35.000000 2021-09-07 [1,2,3] (10,'abc') 2024-10-22 21:00:00.000000 +0900
5758
0 2021-09-07 21:38:35.000000 2021-09-07 [4,5,6] (20,'xyz') 2024-10-22 12:00:00.000000 +0000

0 commit comments

Comments
 (0)