import duckdb from google.cloud import bigquery bqclient = bigquery.Client() table = bigquery.TableReference.from_string( "bigquery-public-data.utility_us.country_code_iso" ) rows = bqclient.list_rows(table) country_code_iso = rows.to_arrow(create_bqstorage_client=True) cursor = duckdb.connect() print(cursor.execute('SELECT * FROM country_code_iso').fetchall())