Skip to content

Commit 1557225

Browse files
author
gituser
committed
Merge branch '1.8_release_3.10.x' into 1.8_release_4.0.x
2 parents 610b587 + 9a8645b commit 1557225

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flinkx-hive/flinkx-hive-writer/src/main/java/com/dtstack/flinkx/hive/writer/HiveOutputFormat.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ public void writeRecord(Row row) throws IOException {
197197
event = GsonUtil.GSON.fromJson((String) tempObj, GsonUtil.gsonMapTypeToken);
198198
}catch (JsonSyntaxException e){
199199
// is not a json string
200-
LOG.warn("bad json string:【{}】", tempObj);
200+
//tempObj 不是map类型 则event直接往下传递
201+
// LOG.warn("bad json string:【{}】", tempObj);
201202
}
202203
}
203204
}

0 commit comments

Comments
 (0)