You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
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.
com.google.api.services.bigquery.model.Tablecontains a property calledBigLakeConfiguration. This property is used to identify a Biglake table, so this needs to be propagated tocom.google.cloud.bigquery.StandardTableDefinition.Describe the solution you'd like
Propagate BigLakeConfiguration from
com.google.api.services.bigquery.model.Tabletocom.google.cloud.bigquery.StandardTableDefinitionAdditional 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.