mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-27 18:05:00 +00:00
Specify Length function for PinotDB (#19189)
This commit is contained in:
parent
0a1ab95f8b
commit
ebd6020329
@ -43,6 +43,7 @@ def _(element, compiler, **kw):
|
|||||||
@compiles(LenFn, Dialects.MariaDB)
|
@compiles(LenFn, Dialects.MariaDB)
|
||||||
@compiles(LenFn, Dialects.Athena)
|
@compiles(LenFn, Dialects.Athena)
|
||||||
@compiles(LenFn, Dialects.Trino)
|
@compiles(LenFn, Dialects.Trino)
|
||||||
|
@compiles(LenFn, Dialects.PinotDB)
|
||||||
@compiles(LenFn, Dialects.Presto)
|
@compiles(LenFn, Dialects.Presto)
|
||||||
@compiles(LenFn, Dialects.BigQuery)
|
@compiles(LenFn, Dialects.BigQuery)
|
||||||
@compiles(LenFn, Dialects.Oracle)
|
@compiles(LenFn, Dialects.Oracle)
|
||||||
|
@ -76,6 +76,7 @@ class PythonDialects(Enum):
|
|||||||
MSSQL = "mssql"
|
MSSQL = "mssql"
|
||||||
MySQL = "mysql"
|
MySQL = "mysql"
|
||||||
Oracle = "oracle"
|
Oracle = "oracle"
|
||||||
|
PinotDB = "pinotdb"
|
||||||
Postgres = "postgresql"
|
Postgres = "postgresql"
|
||||||
Presto = "presto"
|
Presto = "presto"
|
||||||
Redshift = "redshift"
|
Redshift = "redshift"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user