Skip to content

Commit

Permalink
fix: default datax plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
hantmac committed May 25, 2023
1 parent c6ac356 commit 4862a84
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,9 @@ public static String getReaderPluginName(DbType dbType) {
case CLICKHOUSE:
return DATAX_READER_PLUGIN_CLICKHOUSE;
case HIVE:
return DATAX_READER_PLUGIN_RDBMS;
case PRESTO:
return DATAX_READER_PLUGIN_RDBMS;
default:
return null;
return DATAX_READER_PLUGIN_RDBMS;
}
}

Expand All @@ -91,11 +89,9 @@ public static String getWriterPluginName(DbType dbType) {
case DATABEND:
return DATAX_WRITER_PLUGIN_DATABEND;
case HIVE:
return DATAX_WRITER_PLUGIN_RDBMS;
case PRESTO:
return DATAX_WRITER_PLUGIN_RDBMS;
default:
return null;
return DATAX_WRITER_PLUGIN_RDBMS;
}
}

Expand Down

0 comments on commit 4862a84

Please sign in to comment.