Unable to create view from Bigquery command line tools

I tried to create a view using the bq command line tool. Bq command line tool version 2.0.18

I followed the instructions on this page :

My command looks like this:

mk --view="select title from [publicdata:samples.wikipedia] where contributor_id = 3894110" views.my_test_view

I got this result: int() argument must be a string or a number, not 'NoneType'

What did I do wrong? Any help would be greatly appreciated. Thank.

+4
source share
1 answer

The latest version is bq 2.0.19. Can you start gcloud components updateand try again?

0
source

Source: https://habr.com/ru/post/1535634/


All Articles