We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The SparkOrcWriter defines converters that could easily throw exceptions when a required column has a null value, like this:
static class RequiredIntConverter implements Converter { public void addValue(int rowId, int column, SpecializedGetters data, ColumnVector output) { if (data.isNullAt(column)) { throw new NullPointerException("Column " + column + " is required, but null in row: " + rowId); } else { output.isNull[rowId] = false; ((LongColumnVector) output).vector[rowId] = data.getInt(column); } } }
The text was updated successfully, but these errors were encountered:
Update ExpireSnapshots to avoid commit when no snapshots are removed. (…
8713fb3
…Netflix#22)
No branches or pull requests
The SparkOrcWriter defines converters that could easily throw exceptions when a required column has a null value, like this:
The text was updated successfully, but these errors were encountered: