Skip to content
Open
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
2 changes: 1 addition & 1 deletion core-spec/osi-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"$defs": {
"Dialect": {
"type": "string",
"enum": ["ANSI_SQL", "SNOWFLAKE", "MDX", "TABLEAU", "DATABRICKS", "MAQL"],
"enum": ["ANSI_SQL", "SNOWFLAKE", "MDX", "TABLEAU", "DATABRICKS", "MAQL", "BIGQUERY"],
"description": "Supported SQL and expression language dialects"
},
"Vendor": {
Expand Down
3 changes: 3 additions & 0 deletions core-spec/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Supported SQL and expression language dialects for metrics and field definitions
| `TABLEAU` | Tableau calculations |
| `DATABRICKS` | Databricks SQL |
| `MAQL` | GoodData MAQL (Metric Analysis and Query Language) |
| `BIGQUERY` | Google BigQuery (GoogleSQL) |

## Semantic Model

Expand Down Expand Up @@ -278,6 +279,8 @@ expression:
expression: LOWER(email)
- dialect: SNOWFLAKE
expression: LOWER(email)::VARCHAR
- dialect: BIGQUERY
expression: SAFE_CAST(LOWER(email) AS STRING)
description: Normalized email address
```

Expand Down
1 change: 1 addition & 0 deletions core-spec/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ dialects:
- "TABLEAU" # Tableau
- "DATABRICKS" # Databricks SQL
- "MAQL" # GoodData MAQL (Multi-Dimensional Analytical Query Language)
- "BIGQUERY" # Google BigQuery GoogleSQL



Expand Down