I want to fetch all tables from the big query dataset, but it returns only 50 tables from my dataset, here's my code
@dataset_active_tbls.tables returns only 50 tables
@bigquery = Google::Cloud::Bigquery.new({ :credentials => "../commons/bigquery_cred.json" })
@dataset_active_tbls = @bigquery.dataset "my_dataset"
@dataset_active_tbls.tables
how do I get this
next
to get additional data setsTableList
– engineersmnky