Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated bigquery commit ref; updated function description #170

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions extensions/bigquery/description.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extension:
name: bigquery
description: Integrates DuckDB with Google BigQuery, allowing direct querying and management of BigQuery datasets
version: 1.0.0
version: 0.1.0
language: C++
build: cmake
license: MIT
Expand All @@ -13,7 +13,7 @@ extension:

repo:
github: hafenkran/duckdb-bigquery
ref: 656055570493d26de86c4ab3a81f0c1b718835d2
ref: e5cd4a9ac32ce3380559bc63869c442c14e1fb75

docs:
hello_world: |
Expand Down
5 changes: 0 additions & 5 deletions extensions/bigquery/docs/function_description.csv

This file was deleted.

7 changes: 7 additions & 0 deletions extensions/bigquery/docs/function_descriptions.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
function,description,comment,example
bigquery_attach,"Attach to a BigQuery project.","","ATTACH 'project=my_gcp_project' as bq (TYPE bigquery);"
bigquery_scan,"Scan a single table directly from BigQuery.",,"SELECT * FROM bigquery_scan('my_gcp_project.quacking_dataset.duck_tbl');"
bigquery_query,"Run a custom GoogleSQL query in BigQuery and read the results.",,"SELECT * FROM bigquery_query('bq', 'SELECT * FROM quacking_dataset.duck_tbl WHERE duck_id = 123');"
bigquery_execute,"Execute an arbitrary GoogleSQL query in BigQuery.",,"CALL bigquery_execute('bq', 'CREATE SCHEMA deluxe_dataset OPTIONS(location=""us"", default_table_expiration_days=3.75);')"
bigquery_jobs,"List jobs in a BigQuery project.","","SELECT * FROM bigquery_jobs('bq');"
bigquery_clear_cache,"Clear the internal caches to refetch the most current project information from BigQuery.","","CALL bigquery_clear_cache();"
Loading