We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a83f6a4 commit 6fb49b1Copy full SHA for 6fb49b1
dbt-bigquery/.changes/unreleased/Features-20250612-000557.yaml
@@ -0,0 +1,6 @@
1
+kind: Features
2
+body: Add user agent in bigframes mode
3
+time: 2025-06-12T00:05:57.59845537Z
4
+custom:
5
+ Author: jialuoo
6
+ Issue: "1152"
dbt-bigquery/src/dbt/include/bigquery/macros/materializations/table.sql
@@ -143,6 +143,7 @@ df.write \
143
{% macro bigframes_write_table(compiled_code, target_relation) %}
144
import bigframes.pandas as bpd
145
bpd.options.compute.extra_query_labels["bigframes-dbt-api"] = "python-model-table"
146
+bpd.options.bigquery.application_name = f"dbt-bigquery-{{dbt_version}}"
147
bpd.options.bigquery.ordering_mode = "partial"
148
bpd.options.bigquery.project = "{{ target.project }}"
149
{% if target.location %}
0 commit comments