The bigquery functions in our apps script had been working fine all along but 18/06/2013 onwards setProjectId()
, setQuery()
and other BigQuery
functions have stopped working.
On using these functions, the variables remain undefined when they should ideally be populated.
A small sample script which reproduces this issue:
var newJobReference = BigQuery.newJobReference().setProjectId(yourProjectID);
var jobConfig = BigQuery.newJobConfiguration().setQuery(yourJobQueryConfiguration);
Anyone facing the same issue? What might be causing this?
Issue is resolved when I use:
Instead of: