Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yezizp2012 committed Jun 14, 2024
1 parent 11b6dbe commit 24ce152
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion e2e_test/batch/catalog/pg_indexes.slt.part
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
statement ok
create table t(a int, b int);
create table t(a int primary key, b int);

statement ok
create index idx1 on t(a);
Expand All @@ -12,6 +12,7 @@ select schemaname, tablename, indexname, tablespace, indexdef from pg_catalog.pg
----
public t idx1 NULL CREATE INDEX idx1 ON t(a)
public t idx2 NULL CREATE INDEX idx2 ON t(b)
public t t_pkey NULL (empty)

statement ok
drop table t;

0 comments on commit 24ce152

Please sign in to comment.