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 ingestion/src/metadata/profiler/orm/functions/length.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _(element, compiler, **kw):

@compiles(LenFn, Dialects.ClickHouse)
def _(element, compiler, **kw):
"""Handles lenght function for ClickHouse"""
"""Handles length function for ClickHouse"""
if isinstance(element.clauses.clauses[0].type, sqltypes.Enum):
return "length(cast(%s, 'String'))" % compiler.process(element.clauses, **kw)
return "length(%s)" % compiler.process(element.clauses, **kw)
Expand Down
2 changes: 1 addition & 1 deletion ingestion/src/metadata/utils/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __str__(self):

class MissingPluginException(Exception):
"""
An excpetion that captures a missing openmetadata-ingestion plugin for a specific connector.
An exception that captures a missing openmetadata-ingestion plugin for a specific connector.
"""

def __init__(self, plugin: str):
Expand Down
Loading