diff --git a/ingestion/src/metadata/profiler/orm/functions/length.py b/ingestion/src/metadata/profiler/orm/functions/length.py index 88aa32b3799..19b32879be2 100644 --- a/ingestion/src/metadata/profiler/orm/functions/length.py +++ b/ingestion/src/metadata/profiler/orm/functions/length.py @@ -43,6 +43,7 @@ def _(element, compiler, **kw): @compiles(LenFn, Dialects.MariaDB) @compiles(LenFn, Dialects.Athena) @compiles(LenFn, Dialects.Trino) +@compiles(LenFn, Dialects.PinotDB) @compiles(LenFn, Dialects.Presto) @compiles(LenFn, Dialects.BigQuery) @compiles(LenFn, Dialects.Oracle) diff --git a/ingestion/src/metadata/profiler/orm/registry.py b/ingestion/src/metadata/profiler/orm/registry.py index c1e42c5cdae..efef50c4b10 100644 --- a/ingestion/src/metadata/profiler/orm/registry.py +++ b/ingestion/src/metadata/profiler/orm/registry.py @@ -76,6 +76,7 @@ class PythonDialects(Enum): MSSQL = "mssql" MySQL = "mysql" Oracle = "oracle" + PinotDB = "pinotdb" Postgres = "postgresql" Presto = "presto" Redshift = "redshift"