docs(ingest/bigquery): add partition support capability (#11940)

This commit is contained in:
Mayuri Nehate 2024-11-26 01:44:10 +05:30 committed by GitHub
parent 418259b8c4
commit 90fe14aadb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,6 +95,10 @@ def cleanup(config: BigQueryV2Config) -> None:
"Optionally enabled via `classification.enabled`",
supported=True,
)
@capability(
SourceCapability.PARTITION_SUPPORT,
"Enabled by default, partition keys and clustering keys are supported.",
)
class BigqueryV2Source(StatefulIngestionSourceBase, TestableSource):
def __init__(self, ctx: PipelineContext, config: BigQueryV2Config):
super().__init__(config, ctx)