Skip to content

Commit 6d32923

Browse files
committed
bugfix: schema_version param syntax
1 parent a3dec58 commit 6d32923

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clinvar_ingest/cloud/bigquery/processing_history.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def write_started( # noqa: PLR0913
272272
INSERT INTO {fully_qualified_table_id}
273273
(release_date, file_type, pipeline_version, schema_version, processing_started, xml_release_date, bucket_dir)
274274
VALUES
275-
(NULL, @file_type, @pipeline_version, schema_version, CURRENT_TIMESTAMP(), @xml_release_date, @bucket_dir);
275+
(NULL, @file_type, @pipeline_version, @schema_version, CURRENT_TIMESTAMP(), @xml_release_date, @bucket_dir);
276276
"""
277277
job_config = bigquery.QueryJobConfig(
278278
query_parameters=[

0 commit comments

Comments
 (0)