Skip to content

Commit

Permalink
chore: update describe.slt
Browse files Browse the repository at this point in the history
  • Loading branch information
KKould committed Nov 10, 2024
1 parent 792c13f commit d288c2e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/slt/describe.slt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ create table t9 (c1 int primary key, c2 int default 0, c3 varchar unique);
query TTTTI
describe t9;
----
c1 INTEGER 4 false PRIMARY null
c2 INTEGER 4 true EMPTY 0
c3 VARCHAR null true UNIQUE null
c1 Integer 4 false PRIMARY null
c2 Integer 4 true EMPTY 0
c3 Varchar(None, CHARACTERS) null true UNIQUE null

statement ok
drop table t9;
Expand All @@ -17,9 +17,9 @@ create table t9_m (c1 int primary key, c2 int primary key, c3 varchar unique);
query TTTTI
describe t9_m;
----
c1 INTEGER 4 false PRIMARY null
c2 INTEGER 4 false PRIMARY null
c3 VARCHAR null true UNIQUE null
c1 Integer 4 false PRIMARY null
c2 Integer 4 false PRIMARY null
c3 Varchar(None, CHARACTERS) null true UNIQUE null

statement ok
drop table t9_m;

0 comments on commit d288c2e

Please sign in to comment.