Skip to content
New issue

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

Throw UnsupportedOperationException in unused methods #15446

Merged
merged 1 commit into from
Aug 27, 2024
Merged
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 @@ -264,13 +264,13 @@
}

@Override
public FloatVectorValues getFloatVectorValues(String field) throws IOException {
return getFloatVectorValues(field);
public FloatVectorValues getFloatVectorValues(String field) {
throw new UnsupportedOperationException();

Check warning on line 268 in server/src/main/java/org/opensearch/index/engine/TranslogLeafReader.java

View check run for this annotation

Codecov / codecov/patch

server/src/main/java/org/opensearch/index/engine/TranslogLeafReader.java#L268

Added line #L268 was not covered by tests
}

@Override
public ByteVectorValues getByteVectorValues(String field) throws IOException {
return getByteVectorValues(field);
public ByteVectorValues getByteVectorValues(String field) {
throw new UnsupportedOperationException();

Check warning on line 273 in server/src/main/java/org/opensearch/index/engine/TranslogLeafReader.java

View check run for this annotation

Codecov / codecov/patch

server/src/main/java/org/opensearch/index/engine/TranslogLeafReader.java#L273

Added line #L273 was not covered by tests
}

@Override
Expand Down
Loading