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
Issues on GitHub are intended to be related to bugs or feature requests with provider codebase,
so we recommend using our other community resources instead of asking here 👍.
I am trying to run the following command on liquibase 4.21.1 and the liquibase-bigquery extension is also 4.21.1.
Unexpected error running Liquibase: [Simba]BigQueryJDBCDriver Error executing query job. Message: Table "DATABASECHANGELOGLOCK" must be qualified with a dataset (e.g. dataset.table). [Failed SQL: (100032) CREATE TABLE DATABASECHANGELOGLOCK (ID INT, LOCKED BOOLEAN, LOCKGRANTED datetime, LOCKEDBY STRING(255))]
Caused by: 400 Bad Request
POST https://bigquery.googleapis.com/bigquery/v2/projects/my-gcp-project/queries
{
"code": 400,
"errors": [
{
"domain": "global",
"message": "Table "DATABASECHANGELOGLOCK" must be qualified with a dataset (e.g. dataset.table).",
"reason": "invalid"
}
],
"message": "Table "DATABASECHANGELOGLOCK" must be qualified with a dataset (e.g. dataset.table).",
"status": "INVALID_ARGUMENT"
}
Issues on GitHub are intended to be related to bugs or feature requests with provider codebase,
so we recommend using our other community resources instead of asking here 👍.
I am trying to run the following command on liquibase 4.21.1 and the liquibase-bigquery extension is also 4.21.1.
liquibase update --changelog-file="/db/changelog/changelog-master.yaml" --url="jdbc:bigquery://https://googleapis.com/bigquery/v2:443/my_bq_db;ProjectId=my-gcp-project;OAuthType=0;[email protected];OAuthPvtKeyPath=/gcloud/my-gcp-project-61e489b85654.json" --driver="com.simba.googlebigquery.jdbc42.Driver" --classpath="/SimbaJDBCDriverforGoogleBigQuery42_1.3.3.1004/GoogleBigQueryJDBC42.jar"
this is complaining with the following error:
Unexpected error running Liquibase: [Simba]BigQueryJDBCDriver Error executing query job. Message: Table "DATABASECHANGELOGLOCK" must be qualified with a dataset (e.g. dataset.table). [Failed SQL: (100032) CREATE TABLE DATABASECHANGELOGLOCK (ID INT, LOCKED BOOLEAN, LOCKGRANTED datetime, LOCKEDBY STRING(255))]
POST https://bigquery.googleapis.com/bigquery/v2/projects/my-gcp-project/queries
{
"code": 400,
"errors": [
{
"domain": "global",
"message": "Table "DATABASECHANGELOGLOCK" must be qualified with a dataset (e.g. dataset.table).",
"reason": "invalid"
}
],
"message": "Table "DATABASECHANGELOGLOCK" must be qualified with a dataset (e.g. dataset.table).",
"status": "INVALID_ARGUMENT"
}
I was following the following page: https://contribute.liquibase.com/extensions-integrations/directory/database-tutorials/bigquery/
Was wondering if there's a workaround for this?
The text was updated successfully, but these errors were encountered: