Skip to content

Commit

Permalink
Merge pull request #71 from Tishj/statement_error
Browse files Browse the repository at this point in the history
add expected error message
  • Loading branch information
Mytherin authored Nov 27, 2023
2 parents ef91604 + 6bc913e commit 383018a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/sql/storage/attach_detach.test
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ DETACH s1

statement error
SELECT * FROM s1.test

----
Catalog Error: Table with name test does not exist!

statement ok
ATTACH '__TEST_DIR__/attach_detach.db' AS s1 (TYPE SQLITE)
Expand Down
2 changes: 2 additions & 0 deletions test/sql/storage/attach_drop.test
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ DROP TABLE simple.test
# verify the drop was successful
statement error
SELECT * FROM simple.test;
----
Catalog Error: Table with name test does not exist!

statement error
DROP TABLE simple.testx
Expand Down

0 comments on commit 383018a

Please sign in to comment.