bigquery-functions

Crates.iobigquery-functions
lib.rsbigquery-functions
version0.1.15
sourcesrc
created_at2022-10-24 02:05:08.885679
updated_at2024-06-09 02:34:48.239487
descriptionBigQuery functions
homepage
repositoryhttps://github.com/kiibo382/bigquery-functions/
max_upload_size
id695503
size843,823
shota kizawa (kiibo382)

documentation

README

List of BigQuery Standard SQL Functions

This Reference is parsed to generate type definitions.

See 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.

[dependencies]
bigquery-functions = "0.1.15"

Then call the function or type as follows.

use bigquery_functions::get_bigquery_function_names;

fn main() {
    let function_names = get_bigquery_function_names();
    println!("function_names: {:?}", function_names)
}

docs.rs is also helpful.

Commit count: 119

cargo fmt