我刚刚升级了bigquery命令行程序,现在运行查询时返回的行数有限制。限制似乎是100行。在升级之前,我能够返回数千行。我正在使用Debian。有没有办法扩展返回的行数限制?如果我能提供更多信息,请告诉我。
答案 0 :(得分:5)
尝试--max_rows
标志。请参阅bq help query
的输出:
USAGE: bq.py [--global_flags] <command> [--command_flags] [args]
query Execute a query.
...
--max_rows: How many rows to return in the result.
(default: '100')
(an integer)