Skip to content

Commit

Permalink
Add unsupported type test case
Browse files Browse the repository at this point in the history
  • Loading branch information
dentiny committed Dec 21, 2024
1 parent 4bb0f72 commit d29be83
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/regression/expected/unsupported_types.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE TEMP TABLE numeric_tbl (a NUMERIC) USING duckdb;
ERROR: Unsupported type when creating column: type precision 40 with scale 5 is not supported by duckdb, which only allows maximum precision 38
1 change: 1 addition & 0 deletions test/regression/schedule
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ test: transaction_errors
test: secrets
test: prepare
test: function
test: unsupported_types
1 change: 1 addition & 0 deletions test/regression/sql/unsupported_types.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE TEMP TABLE numeric_tbl (a NUMERIC) USING duckdb;

0 comments on commit d29be83

Please sign in to comment.