From 64269ac9e69735b5581f7f0058ae760a14f330e5 Mon Sep 17 00:00:00 2001 From: David Y Liu <7172604+mavysavydav@users.noreply.github.com> Date: Tue, 4 May 2021 09:41:43 -0700 Subject: [PATCH] BigQuery type to Feast type conversion chart update (#1530) * BigQuery type to Feast type chart fixes * Updating correction to be accurate --- docs/specs/offline_store_format.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/specs/offline_store_format.md b/docs/specs/offline_store_format.md index 255dc65cd92..0b94ba40891 100644 --- a/docs/specs/offline_store_format.md +++ b/docs/specs/offline_store_format.md @@ -62,10 +62,10 @@ Here's how Feast types map to BigQuery types when using BigQuery for offline sto | Event Timestamp | `DATETIME` | | BYTES | `BYTES` | | STRING | `STRING` | -| INT32 | `INT64` | -| INT64 | `INT64` | -| DOUBLE | `FLOAT64` | -| FLOAT | `FLOAT64` | +| INT32 | `INT64 / INTEGER` | +| INT64 | `INT64 / INTEGER` | +| DOUBLE | `FLOAT64 / FLOAT` | +| FLOAT | `FLOAT64 / FLOAT` | | BOOL | `BOOL`| | BYTES\_LIST | `ARRAY` | | STRING\_LIST | `ARRAY`| @@ -75,4 +75,4 @@ Here's how Feast types map to BigQuery types when using BigQuery for offline sto | FLOAT\_LIST | `ARRAY`| | BOOL\_LIST | `ARRAY`| -Values that are not specified by the table above will cause an error on conversion. \ No newline at end of file +Values that are not specified by the table above will cause an error on conversion.