Skip to content

Commit

Permalink
#67 修复
Browse files Browse the repository at this point in the history
  • Loading branch information
weiye committed Mar 26, 2020
1 parent cf5a1de commit 4cb9e19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public Map<String, Object> buildHBaseWriter() {
List<Map<String, Object>> columns = Lists.newArrayList();
for (int i = 0; i < writerColumns.size(); i++) {
Map<String, Object> column = Maps.newLinkedHashMap();
column.put("index", i);
column.put("index", i+1);
column.put("name", writerColumns.get(i));
column.put("type", "string");
columns.add(column);
Expand Down

0 comments on commit 4cb9e19

Please sign in to comment.