When getting table content in CSV, null columns get dropped in output. Example:
curl -X GET -H "Authorization: Bearer TOKEN" “https://www.googleapis.com/bigquery/v2/projects/PROJ_NAME/datasets/DATASET_NAME/tables/TESTNULL/data?alt=csv&startIndex=0&maxResults=10000”
the output is:
1,2,3
2,3,4
3,5
5
5,6
TESTNULL table contains 3 integer columns:
Row f1 f2 f3
1 1 2 3
2 2 3 4
3 3 null 5
4 null null 5
5 5 6 null
The same query with alt=json works fine. Ideas? Thanks.