Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,16 @@ public void readBinary(int total, WritableColumnVector c, int rowId) {
throw SparkUnsupportedOperationException.apply();
}

@Override
public void readGeometry(int total, WritableColumnVector c, int rowId) {
throw SparkUnsupportedOperationException.apply();
}

@Override
public void readGeography(int total, WritableColumnVector c, int rowId) {
throw SparkUnsupportedOperationException.apply();
}

@Override
public void skipBooleans(int total) {
throw SparkUnsupportedOperationException.apply();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ void readLongsWithRebase(
void readFloats(int total, WritableColumnVector c, int rowId);
void readDoubles(int total, WritableColumnVector c, int rowId);
void readBinary(int total, WritableColumnVector c, int rowId);
void readGeometry(int total, WritableColumnVector c, int rowId);
void readGeography(int total, WritableColumnVector c, int rowId);

/*
* Skips `total` values
Expand Down