Skip to content

Commit

Permalink
fix: Fix scan datasize to 0 for inference schema (feast-dev#3628)
Browse files Browse the repository at this point in the history
* fix: Fix scan datasize to 0 for inference schema

Signed-off-by: Jiwon Park <[email protected]>

* style: Rename queryRes to snake case

Signed-off-by: Jiwon Park <[email protected]>

---------

Signed-off-by: Jiwon Park <[email protected]>
Signed-off-by: zerafachris PERSONAL <[email protected]>
  • Loading branch information
phil-park authored and zerafachris committed Mar 5, 2024
1 parent 721d3ba commit 206c6a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sdk/python/feast/infra/offline_stores/bigquery_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,9 @@ def get_table_column_names_and_types(
if not isinstance(schema[0], bigquery.schema.SchemaField):
raise TypeError("Could not parse BigQuery table schema.")
else:
bq_columns_query = f"SELECT * FROM ({self.query}) LIMIT 1"
queryRes = client.query(bq_columns_query).result()
schema = queryRes.schema
bq_columns_query = f"SELECT * FROM ({self.query}) LIMIT 0"
query_res = client.query(bq_columns_query).result()
schema = query_res.schema

name_type_pairs: List[Tuple[str, str]] = []
for field in schema:
Expand Down

0 comments on commit 206c6a6

Please sign in to comment.