Skip to content

Commit 37e7e62

Browse files
author
dapeng
committed
保持一致
1 parent 2f0fdfe commit 37e7e62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hbase/hbase-sink/src/main/java/com/dtstack/flink/sql/sink/hbase/HbaseOutputFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ public HbaseOutputFormat finish() {
298298
String[] columns = keySet.toArray(new String[keySet.size()]);
299299
for (int i = 0; i < columns.length; ++i) {
300300
String col = columns[i];
301-
String[] part = col.split(":");
301+
String[] part = StringUtils.split(col, ":");;
302302
families[i] = part[0];
303303
qualifiers[i] = part[1];
304304
}

0 commit comments

Comments
 (0)