Skip to content

Commit

Permalink
Fixed IT schema to map bigInt Unsigned to Numeric (GoogleCloudPlatfor…
Browse files Browse the repository at this point in the history
  • Loading branch information
VardhanThigle authored Oct 16, 2024
1 parent 6fa8867 commit 2dbf7c2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CREATE TABLE bigint_table (
id INT64 NOT NULL,
bigint_col INT64,
bigint_col NUMERIC,
) PRIMARY KEY(id);

CREATE TABLE bigint_table (
Expand Down Expand Up @@ -75,7 +75,7 @@ CREATE TABLE int_table (

CREATE TABLE `integer_unsigned_table` (
id INT64 NOT NULL,
int_col INT64,
integer_unsigned_col INT64,
) PRIMARY KEY(id);

CREATE TABLE json_table (
Expand Down

0 comments on commit 2dbf7c2

Please sign in to comment.