Skip to content

Commit

Permalink
bigquery: updated repo ref; updated descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
dewall committed Sep 29, 2024
1 parent e45eeee commit 7b5d08c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions extensions/bigquery/description.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
extension:
name: bigquery
description: Enables seamless integration and querying of BigQuery datasets within DuckDB
description: Integrates DuckDB with Google BigQuery, allowing direct querying and management of BigQuery datasets
version: 1.0.0
language: C++
build: cmake
Expand All @@ -13,7 +13,7 @@ extension:

repo:
github: hafenkran/duckdb-bigquery
ref: 0f275b5db2fecea682b6162a8ffdb010a779a55f
ref: b83ef867d54ddc31b3a0ae9ae04523e965f51201

docs:
hello_world: |
Expand Down Expand Up @@ -41,5 +41,5 @@ docs:
└───────┴────────────────┘
extended_description: |
The DuckDB BigQuery Extension enables DuckDB to integrate seamlessly with Google BigQuery, allowing users to directly access, manage, and manipulate their BigQuery datasets and tables using standard SQL statements.
The DuckDB BigQuery Extension integrates DuckDB with Google BigQuery, allowing direct querying and management of BigQuery datasets.
For detailed setup and usage instructions, visit the [extension repository](https://github.com/hafenkran/duckdb-bigquery).
7 changes: 4 additions & 3 deletions extensions/bigquery/docs/function_description.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
function,description,comment,example
"bigquery_scan","Query a single table directly from BigQuery using the specified table.","","SELECT * FROM bigquery_scan('my_gcp_project.quacking_dataset.duck_tbl');"
"bigquery_execute","Execute arbitrary queries directly in BigQuery using native GoogleSQL.","","ATTACH 'CALL bigquery_execute('database', 'CREATE SCHEMA deluxe_dataset OPTIONS(location=\"us\", default_table_expiration_days=3.75);');"
"bigquery_clear_cache","Clear the internal caches to refetch the most current project information from BigQuery.","","CALL bigquery_clear_cache();"
bigquery_scan,"Query a single table directly from BigQuery using the specified table.",,"SELECT * FROM bigquery_scan('my_gcp_project.quacking_dataset.duck_tbl');"
bigquery_execute,"Execute arbitrary queries directly in BigQuery using native GoogleSQL.",,"ATTACH 'project=my_gcp_project' AS bq (TYPE bigquery);
CALL bigquery_execute('bq', 'CREATE SCHEMA deluxe_dataset OPTIONS(location=""us"", default_table_expiration_days=3.75);')"
bigquery_clear_cache,"Clear the internal caches to refetch the most current project information from BigQuery.","","CALL bigquery_clear_cache();"

0 comments on commit 7b5d08c

Please sign in to comment.