Skip to content

Commit 114a69b

Browse files
committed
Fix test.
1 parent 5c4c1c8 commit 114a69b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

sql/core/src/main/java/org/apache/spark/sql/execution/vectorized/ColumnVector.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,7 @@ public short getShort(int ordinal) {
200200
public long getLong(int ordinal) { return data.getLong(offset + ordinal); }
201201

202202
@Override
203-
public float getFloat(int ordinal) {
204-
throw new UnsupportedOperationException();
205-
}
203+
public float getFloat(int ordinal) { return data.getFloat(offset + ordinal); }
206204

207205
@Override
208206
public double getDouble(int ordinal) { return data.getDouble(offset + ordinal); }

0 commit comments

Comments
 (0)