Related to #7632 (legacy SQL), it would be useful to have constants for all scalar data types for the new bigquery_v2.types.StandardSqlDataType format. Currently, one has to construct an object like
bigquery_v2.types.StandardSqlDataType(
type_kind=bigquery_v2.enums.StandardSqlDataType.TypeKind.INT64
)
It would be convenient if instead one could just say bigquery.StandardSqlDataTypes.INT64 and similar for all scalar data types.
Related to #7632 (legacy SQL), it would be useful to have constants for all scalar data types for the new
bigquery_v2.types.StandardSqlDataTypeformat. Currently, one has to construct an object likeIt would be convenient if instead one could just say
bigquery.StandardSqlDataTypes.INT64and similar for all scalar data types.