1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Destination bigquery: no need to drop namespace anymore (#61321)

This commit is contained in:
Edward Gao
2025-06-02 10:18:49 -07:00
committed by GitHub
parent 3e878bf5ed
commit 10c64b869b
3 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ data:
connectorSubtype: database
connectorType: destination
definitionId: 22f6c74f-5699-40ff-833c-4a879ea40133
dockerImageTag: 2.11.2
dockerImageTag: 2.11.3
dockerRepository: airbyte/destination-bigquery
documentationUrl: https://docs.airbyte.com/integrations/destinations/bigquery
githubIssueLabel: destination-bigquery

View File

@@ -23,6 +23,5 @@ class BigqueryCheckCleaner : CheckCleaner<BigqueryConfiguration> {
BigqueryFinalTableNameGenerator(config).getTableName(stream.descriptor).toTableId()
)
?.delete()
bq.getDataset(stream.descriptor.namespace)?.delete()
}
}

View File

@@ -213,6 +213,7 @@ tutorials:
| Version | Date | Pull Request | Subject |
|:------------|:-----------|:-----------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 2.11.3 | 2025-06-02 | [61321](https://github.com/airbytehq/airbyte/pull/61321) | CHECK operation doesn't need to drop the dataset anymore. |
| 2.11.2 | 2025-05-29 | [60986](https://github.com/airbytehq/airbyte/pull/60986) | CHECK operation uses configured default dataset instead of `airbyte_internal_test`. |
| 2.11.1 | 2025-05-29 | [60973](https://github.com/airbytehq/airbyte/pull/60973) | Improve error recovery when a stream's sync mode and schema are both changed and the previous sync exited uncleanly. |
| 2.11.0 | 2025-05-27 | [60922](https://github.com/airbytehq/airbyte/pull/60922) | Promoting release candidate 2.11.0-rc.7 to a main version. |