-
Notifications
You must be signed in to change notification settings - Fork 130
Description
com.google.api.services.bigquery.model.Table contains a property called BigLakeConfiguration. This property is used to identify a Biglake table, so this needs to be propagated to com.google.cloud.bigquery.StandardTableDefinition.
Describe the solution you'd like
Propagate BigLakeConfiguration from com.google.api.services.bigquery.model.Table to com.google.cloud.bigquery.StandardTableDefinition
Additional context
The Spark Bigquery connector uses the java-bigquery library to communicate with BigQuery. In some cases, we need to determine if a table is a Biglake table. A table is identified as a Biglake table if it has the BigLakeConfiguration property. Therefore, we need to propagate the BigLakeConfiguration property from the Table class to the StandardTableDefinition class.