[row] improve test on VectorizedColumnBatch#1049
Conversation
|
@wuchong A quick question: |
|
@gyang94 yes, it's by design. It's invalid to call |
| assertThat(row.getDouble(6)).isEqualTo(rowData.getDouble(6)); | ||
| assertThat(row.getDecimal(7, 10, 3)).isEqualTo(rowData.getDecimal(7, 10, 3)); | ||
| assertThat(row.getChar(8, 3)).isEqualTo(rowData.getChar(8, 3)); | ||
| if (!row.isNullAt(9)) { |
There was a problem hiding this comment.
should check it's null for this position in rowData, if it's null in row.
There was a problem hiding this comment.
Please fix other nullable checks.
Purpose
Linked issue: close #1048
Brief change log
Tests
API and Format
Documentation