Skip to content

Commit 3605992

Browse files
committed
delete ';' at the end of statement/query
1 parent 7b64f0e commit 3605992

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/sql/catalog/test_switching_from_detached_catalog.test

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,29 @@
22
# description: Test switching from detached catalog to another catalog
33
# group: [catalog]
44

5-
statement ok con1;
5+
statement ok con1
66
ATTACH ':memory:' AS db1;
77

8-
statement ok con1;
8+
statement ok con1
99
ATTACH ':memory:' AS db2;
1010

11-
statement ok con1;
11+
statement ok con1
1212
USE db1;
1313

14-
query I con1;
14+
query I con1
1515
SELECT CURRENT_SETTING('search_path');
1616
----
1717
db1.main
1818

19-
statement ok con2;
19+
statement ok con2
2020
USE db2;
2121

2222
# drop catalog db1, which con1 is using
23-
statement ok con2;
23+
statement ok con2
2424
DETACH db1;
2525

2626
# querying within the detached catalog fails
27-
statement error con1;
27+
statement error con1
2828
SHOW TABLES;
2929
----
3030
Binder Error: Catalog "db1" does not exist!

0 commit comments

Comments
 (0)