I am trying to extract data from a BigQuery table using Google Cloud Dataflow.
My BigQuery table has few empty values(for String
datatype) and null (for Numeric
data types).
When I try to extract the data in dataflow using BigQueryIO.readTableRows().fromQuery(select * from table_name)
, I don't see the columns with null values.
How can I achieve this to get all the columns as part of the TableRow object?
Any help is appreciated