summaryrefslogtreecommitdiffstats
path: root/sqlglot/schema.py
diff options
context:
space:
mode:
Diffstat (limited to 'sqlglot/schema.py')
-rw-r--r--sqlglot/schema.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/sqlglot/schema.py b/sqlglot/schema.py
index f1c4a09..f73adee 100644
--- a/sqlglot/schema.py
+++ b/sqlglot/schema.py
@@ -285,8 +285,6 @@ class MappingSchema(AbstractMappingSchema[t.Dict[str, str]], Schema):
elif isinstance(column_type, str):
return self._to_data_type(column_type.upper(), dialect=dialect)
- raise SchemaError(f"Unknown column type '{column_type}'")
-
return exp.DataType.build("unknown")
def _normalize(self, schema: t.Dict) -> t.Dict: