Skip to content

Commit

Permalink
Update type map in Bigquery sink docs (#633)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniil-quix authored Nov 18, 2024
1 parent f57877f commit 9494d8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/connectors/sinks/google-cloud-bigquery-sink.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ Here is how the Python types are mapped to the BigQuery column types:

```
{
int: "NUMERIC",
float: "NUMERIC",
decimal.Decimal: "NUMERIC",
int: "FLOAT64",
float: "FLOAT64",
Decimal: "BIGNUMERIC",
str: "STRING",
bytes: "BYTES",
datetime: "DATETIME",
Expand Down

0 comments on commit 9494d8d

Please sign in to comment.