Skip to content

Commit 0c092d1

Browse files
authored
modify case(main) (#21878)
modify case Approved by: @heni02
1 parent 40ed468 commit 0c092d1

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

test/distributed/cases/ddl/create_table_as_select.result

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -735,11 +735,9 @@ create table time05 as select unix_timestamp(col1) from time01;
735735
show create table time05;
736736
Table Create Table
737737
time05 CREATE TABLE `time05` (\n `unix_timestamp(col1)` bigint DEFAULT NULL\n)
738-
select * from time05;
739-
unix_timestamp(col1)
740-
1602374400
741-
null
742-
null
738+
select count(*) from time05;
739+
count(*)
740+
3
743741
drop table time05;
744742

745743
drop table if exists time06;

test/distributed/cases/ddl/create_table_as_select.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ drop table time04;
471471
drop table if exists time05;
472472
create table time05 as select unix_timestamp(col1) from time01;
473473
show create table time05;
474-
select * from time05;
474+
select count(*) from time05;
475475
drop table time05;
476476

477477
drop table if exists time06;

0 commit comments

Comments
 (0)