Skip to content

Commit 6130477

Browse files
committed
chore: codefmt
1 parent be9dcae commit 6130477

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

tests/suites/0_stateless/02_ddl/02_0001_show_create_table.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ tc CREATE TABLE tc (
108108
create or replace table test.auto_increment(c1 int, c2 int autoincrement);
109109

110110
>>>> show create table test.auto_increment;
111-
auto_increment CREATE TABLE auto_increment (
111+
auto_increment CREATE TABLE auto_increment (
112112
c1 INT NULL,
113113
c2 INT NULL AUTOINCREMENT (0, 1) ORDER,
114114
c3 INT NULL IDENTITY (2, 3) ORDER
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
t BASE TABLE db12_0002 default account_admin FUSE yyyy-mm-dd HH:MM:SS.ssssss 0 0 0 0
22
v_t db12_0002 default NULL VIEW yyyy-mm-dd HH:MM:SS.ssssss SELECT * FROM db12_0002.t
33
t yyyy-mm-dd HH:MM:SS.ssssss
4-
seq 1 1 yyyy-mm-dd HH:MM:SS.ssssss yyyy-mm-dd HH:MM:SS.ssssss NULL
5-
seq1 1 1 yyyy-mm-dd HH:MM:SS.ssssss yyyy-mm-dd HH:MM:SS.ssssss NULL
6-
seq 1 1 yyyy-mm-dd HH:MM:SS.ssssss yyyy-mm-dd HH:MM:SS.ssssss NULL
4+
1 0 yyyy-mm-dd HH:MM:SS.ssssss yyyy-mm-dd HH:MM:SS.ssssss NULL
5+
3 2 yyyy-mm-dd HH:MM:SS.ssssss yyyy-mm-dd HH:MM:SS.ssssss NULL
6+
1 1 yyyy-mm-dd HH:MM:SS.ssssss yyyy-mm-dd HH:MM:SS.ssssss NULL
7+
1 1 yyyy-mm-dd HH:MM:SS.ssssss yyyy-mm-dd HH:MM:SS.ssssss NULL
8+
1 1 yyyy-mm-dd HH:MM:SS.ssssss yyyy-mm-dd HH:MM:SS.ssssss NULL

tests/suites/0_stateless/12_time_travel/12_0002_time_travel_show.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ DROP SEQUENCE if exists seq;
1717
DROP SEQUENCE if exists seq1;
1818
CREATE SEQUENCE seq;
1919
CREATE SEQUENCE seq1;
20-
show sequences;
20+
select interval, current, comment from show_sequences();
2121
desc sequence seq;
2222
DROP SEQUENCE if exists seq;
2323
DROP SEQUENCE if exists seq1;

0 commit comments

Comments
 (0)