Skip to content

Commit e8b685d

Browse files
committed
fixed varchar data type
1 parent 0329f7c commit e8b685d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/metabase/test/data/teradata.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
(defmethod sql.tx/field-base-type->sql-type [:teradata :type/Decimal] [_ _] "DECIMAL")
2020
(defmethod sql.tx/field-base-type->sql-type [:teradata :type/Float] [_ _] "FLOAT")
2121
(defmethod sql.tx/field-base-type->sql-type [:teradata :type/Integer] [_ _] "INTEGER")
22-
(defmethod sql.tx/field-base-type->sql-type [:teradata :type/Text] [_ _] "VARCHAR2(2048)")
22+
(defmethod sql.tx/field-base-type->sql-type [:teradata :type/Text] [_ _] "VARCHAR(2048)")
2323
(defmethod sql.tx/field-base-type->sql-type [:teradata :type/Time] [_ _] "TIME")
2424

2525
;; Tested using Teradata Express VM image. Set the host to the correct address if localhost does not work.

0 commit comments

Comments
 (0)