Skip to content

Commit

Permalink
update table name for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
dentiny committed Dec 6, 2024
1 parent 677e521 commit 64edfb9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/expected/unsupported/types.out
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ERROR: column "a" has unsupported type
CREATE TYPE point AS (x int, y int);
CREATE TABLE t (a point) USING columnstore;
ERROR: column "a" has unsupported type
CREATE TABLE mooncake_numeric_tbl (val numeric(40, 5)) USING columnstore;
CREATE TABLE t (val numeric(40, 5)) USING columnstore;
ERROR: Unsupported type when creating column: type precision 40 with scale 5 is not supported by duckdb, which only allows maximum precision 38
CREATE TABLE mooncake_numeric_tbl (val numeric) USING columnstore;
CREATE TABLE t (val numeric) USING columnstore;
ERROR: Unsupported type when creating column: type precision 65535 with scale -5 is not supported by duckdb, which only allows maximum precision 38
4 changes: 2 additions & 2 deletions test/sql/unsupported/types.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ CREATE TABLE t (a jsonb) USING columnstore;
CREATE TYPE point AS (x int, y int);
CREATE TABLE t (a point) USING columnstore;

CREATE TABLE mooncake_numeric_tbl (val numeric(40, 5)) USING columnstore;
CREATE TABLE mooncake_numeric_tbl (val numeric) USING columnstore;
CREATE TABLE t (val numeric(40, 5)) USING columnstore;
CREATE TABLE t (val numeric) USING columnstore;

0 comments on commit 64edfb9

Please sign in to comment.