Skip to content

Commit 9494d8d

Browse files
authored
Update type map in Bigquery sink docs (#633)
1 parent f57877f commit 9494d8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/connectors/sinks/google-cloud-bigquery-sink.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ Here is how the Python types are mapped to the BigQuery column types:
9393

9494
```
9595
{
96-
int: "NUMERIC",
97-
float: "NUMERIC",
98-
decimal.Decimal: "NUMERIC",
96+
int: "FLOAT64",
97+
float: "FLOAT64",
98+
Decimal: "BIGNUMERIC",
9999
str: "STRING",
100100
bytes: "BYTES",
101101
datetime: "DATETIME",

0 commit comments

Comments
 (0)