Skip to content

Commit

Permalink
[Improvement][data studio]oracle timestamp column type order is chang…
Browse files Browse the repository at this point in the history
…ed to precede time column (#3821)
  • Loading branch information
zhuxt2015 authored Sep 25, 2024
1 parent d9366a9 commit cf80e45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public OracleTypeConvert() {
this.convertMap.clear();
register("char", ColumnType.STRING);
register("date", ColumnType.LOCAL_DATETIME);
register("time", ColumnType.TIME);
register("timestamp", ColumnType.TIMESTAMP);
register("time", ColumnType.TIME);
register("number", OracleTypeConvert::convertNumber);
register("float", ColumnType.JAVA_LANG_FLOAT);
register("clob", ColumnType.STRING);
Expand Down

0 comments on commit cf80e45

Please sign in to comment.