We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0fdfe commit 37e7e62Copy full SHA for 37e7e62
hbase/hbase-sink/src/main/java/com/dtstack/flink/sql/sink/hbase/HbaseOutputFormat.java
@@ -298,7 +298,7 @@ public HbaseOutputFormat finish() {
298
String[] columns = keySet.toArray(new String[keySet.size()]);
299
for (int i = 0; i < columns.length; ++i) {
300
String col = columns[i];
301
- String[] part = col.split(":");
+ String[] part = StringUtils.split(col, ":");;
302
families[i] = part[0];
303
qualifiers[i] = part[1];
304
}
0 commit comments