Skip to content

Commit

Permalink
BigQuery type to Feast type conversion chart update (feast-dev#1530)
Browse files Browse the repository at this point in the history
* BigQuery type to Feast type chart fixes

* Updating correction to be accurate
  • Loading branch information
mavysavydav authored and jklegar committed May 12, 2021
1 parent 13d7a9f commit a84036d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/specs/offline_store_format.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<BYTES>` |
| STRING\_LIST | `ARRAY<STRING>`|
Expand All @@ -75,4 +75,4 @@ Here's how Feast types map to BigQuery types when using BigQuery for offline sto
| FLOAT\_LIST | `ARRAY<FLOAT64>`|
| BOOL\_LIST | `ARRAY<BOOL>`|

Values that are not specified by the table above will cause an error on conversion.
Values that are not specified by the table above will cause an error on conversion.

0 comments on commit a84036d

Please sign in to comment.