soda-core icon indicating copy to clipboard operation
soda-core copied to clipboard

querying bq table with wildcard

Open tnyz opened this issue 6 months ago • 2 comments

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

tnyz avatar Jun 06 '25 17:06 tnyz

CLOUD-9191

tools-soda avatar Jun 06 '25 17:06 tools-soda

actually I found

    def quote_table(self, table_name) -> str:
        return f"`{table_name}`"

is there any suggestion on how to use this feature?

tnyz avatar Jun 06 '25 17:06 tnyz