diff --git a/ingestion/src/metadata/orm_profiler/orm/functions/length.py b/ingestion/src/metadata/orm_profiler/orm/functions/length.py index ef91ca845fa..89dd168be72 100644 --- a/ingestion/src/metadata/orm_profiler/orm/functions/length.py +++ b/ingestion/src/metadata/orm_profiler/orm/functions/length.py @@ -40,5 +40,6 @@ def _(element, compiler, **kw): @compiles(LenFn, Dialects.MariaDB) @compiles(LenFn, Dialects.Athena) @compiles(LenFn, Dialects.Trino) +@compiles(LenFn, Dialects.Presto) def _(element, compiler, **kw): return "LENGTH(%s)" % compiler.process(element.clauses, **kw)