soda-core
soda-core copied to clipboard
querying bq table with wildcard
bq has native support for wildcard query but requires additional backtick https://cloud.google.com/bigquery/docs/querying-wildcard-tables, it would be great if soda can format the bq table names with wildcard
CLOUD-9191
actually I found
def quote_table(self, table_name) -> str:
return f"`{table_name}`"
is there any suggestion on how to use this feature?