Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ public static String toSqlType(TajoDataTypes.DataType type) {
return "character";
case DATE:
return "date";
case TIMESTAMP:
return "timestamp";
case TIME:
return "time";
case VARCHAR:
return "varchar";
case TEXT:
Expand Down Expand Up @@ -103,7 +107,11 @@ public static int tajoTypeToSqlType(TajoDataTypes.DataType type) throws SQLExcep
case NUMERIC:
return Types.NUMERIC;
case DATE:
return Types.DATE;
case TIMESTAMP:
return Types.TIMESTAMP;
case TIME:
return Types.TIME;
case VARCHAR:
return Types.VARCHAR;
case TEXT:
Expand Down
Loading