Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
gdliu3 committed Jul 21, 2024
1 parent 8642ed6 commit 0f6dd73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public byte[] buildJsonString(SeaTunnelRow row, SeaTunnelRowType seaTunnelRowTyp
new JsonSerializationSchema(seaTunnelRowType, NULL_VALUE);
ObjectMapper mapper = jsonSerializationSchema.getMapper();
mapper.configure(JsonGenerator.Feature.WRITE_BIGDECIMAL_AS_PLAIN, true);
return new JsonSerializationSchema(seaTunnelRowType, NULL_VALUE).serialize(row);
return jsonSerializationSchema.serialize(row);
}

public byte[] buildCSVString(SeaTunnelRow row, SeaTunnelRowType seaTunnelRowType)
Expand Down

0 comments on commit 0f6dd73

Please sign in to comment.