Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add missing field error to row error message #1752

Merged
merged 15 commits into from
Aug 17, 2022
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public static class AppendSerializtionError extends RuntimeException {
private final String streamName;

public AppendSerializtionError(String streamName, Map<Integer, String> rowIndexToErrorMessage) {
yirutang marked this conversation as resolved.
Show resolved Hide resolved
super(String.format("Append serializtion failed for writer: %s", streamName));
super(String.format("Append serialization failed for writer: %s", streamName));
this.rowIndexToErrorMessage = rowIndexToErrorMessage;
this.streamName = streamName;
}
Expand Down
Loading