summaryrefslogtreecommitdiffstats
path: root/sqlglot/schema.py
diff options
context:
space:
mode:
Diffstat (limited to 'sqlglot/schema.py')
-rw-r--r--sqlglot/schema.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/sqlglot/schema.py b/sqlglot/schema.py
index c223ee0..d9a4004 100644
--- a/sqlglot/schema.py
+++ b/sqlglot/schema.py
@@ -160,9 +160,7 @@ class MappingSchema(AbstractMappingSchema[t.Dict[str, str]], Schema):
super().__init__(schema)
self.visible = visible or {}
self.dialect = dialect
- self._type_mapping_cache: t.Dict[str, exp.DataType] = {
- "STR": exp.DataType.build("text"),
- }
+ self._type_mapping_cache: t.Dict[str, exp.DataType] = {}
@classmethod
def from_mapping_schema(cls, mapping_schema: MappingSchema) -> MappingSchema: