我有一个使用GoogleSheet作为数据源创建的表格(gs_table)。
使用python API时,只要gs_table在查询中,我就会收到错误。 例如:
SELECT r.id AS retailer_id, p.id AS product_id
FROM [dataset.gs_table] r
JOIN [dataset.csv_imported_table] p
ON r.id = p.retailer_id
RuntimeError:{u'reason':u'internalError',u'message':u'发生了内部错误,请求无法完成。'}
如果源是GoogleSheet,则会发生在所有表格中。
在BigQuery UI中执行相同的查询完全没问题。
这是API的限制还是错误?