Supported SQL and expression language dialects.
| 23 | |
| 24 | |
| 25 | class OSIDialect(str, Enum): |
| 26 | """Supported SQL and expression language dialects.""" |
| 27 | |
| 28 | ANSI_SQL = "ANSI_SQL" |
| 29 | SNOWFLAKE = "SNOWFLAKE" |
| 30 | MDX = "MDX" |
| 31 | MAQL = "MAQL" |
| 32 | TABLEAU = "TABLEAU" |
| 33 | DATABRICKS = "DATABRICKS" |
| 34 | BIGQUERY = "BIGQUERY" |
| 35 | |
| 36 | |
| 37 | class OSIVendor(str, Enum): |
nothing calls this directly
no outgoing calls
no test coverage detected