I am trying to write to a BigQuery table using Cloud Dataflow. This BigQuery table has an integer column which is set to nullable. For null values, it gives following error:
Could not convert value to integer. Field: ITM_QT; Value:
But when I converted the datatype of the same column to String, it is accepting null values.
So is there any way to write null values to an integer column using Cloud Dataflow?
This error goes if I change the column datatype to String.