Skip to content

Commit

Permalink
fix slt
Browse files Browse the repository at this point in the history
  • Loading branch information
yezizp2012 committed Oct 16, 2023
1 parent 528ca2c commit 65296cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions e2e_test/ddl/show.slt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ create materialized view mv3 as select sum(v1) as sum_v1 from t3;
statement ok
create view v3 as select sum(v2) as sum_v2 from t3;

query TT
query TTT
describe t3;
----
v1 integer false
Expand All @@ -17,7 +17,7 @@ _row_id serial true
primary key _row_id NULL
distribution key _row_id NULL

query TT
query TTT
show columns from t3;
----
v1 integer false
Expand All @@ -33,7 +33,7 @@ show indexes from t3;
----
idx1 t3 v1 ASC, v2 ASC v3 v1

query TT
query TTT
describe t3;
----
v1 integer false
Expand Down
4 changes: 2 additions & 2 deletions e2e_test/extended_mode/basic.slt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ values(round(42.4382));
statement ok
create table t3 (v1 int, v2 int, v3 int);

query TT
query TTT
describe t3;
----
v1 integer false
Expand All @@ -49,7 +49,7 @@ _row_id serial true
primary key _row_id NULL
distribution key _row_id NULL

query TT
query TTT
show columns from t3;
----
v1 integer false
Expand Down

0 comments on commit 65296cc

Please sign in to comment.