BigQuery returns NULLABLE mode for a field that has a REQUIRED mode (field created as a NOT NULL from the beginning) #3166
Labels
api: bigquery
Issues related to the googleapis/java-bigquery API.
Environment details
BigQuery Client Library for Java:
google-cloud-bigquery
version 2.37.2 and belowI'm using Java 11.
Steps to reproduce
CREATE TABLE sample.TEST_TABLE ( C1 INT64 NOT NULL, C2 BIGNUMERIC );
REQUIRED
, while it reports the mode asNULLABLE
.Code example
// OR
Prints out 2 nullable fields.
The text was updated successfully, but these errors were encountered: