https://github.com/shota-kizawa/bigquery-functions
https://github.com/shota-kizawa/bigquery-functions
bigquery sql
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shota-kizawa/bigquery-functions
- Owner: shota-kizawa
- License: mit
- Created: 2022-10-19T04:32:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-03T03:13:54.000Z (over 1 year ago)
- Last Synced: 2026-01-14T00:58:22.231Z (5 months ago)
- Topics: bigquery, sql
- Language: Rust
- Homepage:
- Size: 697 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# List of BigQuery Standard SQL Functions
[This Reference](https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-and-operators) is parsed to generate type definitions.
See [output](./output) for a list of BiqQuery functions.
## Usage
Here's how to process a list of BigQuery functions using Rust.
Fist, add the following to Cargo.toml.
```toml
[dependencies]
bigquery-functions = "0.1.15"
```
Then call the function or type as follows.
```rust
use bigquery_functions::get_bigquery_function_names;
fn main() {
let function_names = get_bigquery_function_names();
println!("function_names: {:?}", function_names)
}
```
[docs.rs](https://docs.rs/bigquery-functions/latest/bigquery_functions/#) is also helpful.