We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c4c1c8 commit 114a69bCopy full SHA for 114a69b
sql/core/src/main/java/org/apache/spark/sql/execution/vectorized/ColumnVector.java
@@ -200,9 +200,7 @@ public short getShort(int ordinal) {
200
public long getLong(int ordinal) { return data.getLong(offset + ordinal); }
201
202
@Override
203
- public float getFloat(int ordinal) {
204
- throw new UnsupportedOperationException();
205
- }
+ public float getFloat(int ordinal) { return data.getFloat(offset + ordinal); }
206
207
208
public double getDouble(int ordinal) { return data.getDouble(offset + ordinal); }
0 commit comments