-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[Rename] refactor more of o.e.search package in the server module. #306
[Rename] refactor more of o.e.search package in the server module. #306
Conversation
✅ DCO Check Passed |
❌ DCO Check Failed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A pleasant PR with purely class path change. 🥳
|
||
import java.io.IOException; | ||
import java.util.Locale; | ||
import java.util.Objects; | ||
import java.util.function.Consumer; | ||
|
||
public final class DirectCandidateGeneratorBuilder implements CandidateGenerator { | ||
public final class DirectCandidateGeneratorBuilder implements PhraseSuggestionBuilder.CandidateGenerator { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor: Seems an unexpected change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolved, thanks!
As part of this commit we refactor the following in the o.e.search package: - rename `org.elasticsearch.search.fetch` to `org.opensearch.search.fetch` - rename `org.elasticsearch.search.internal` to `org.opensearch.search.internal` - rename `org.elasticsearch.search.profile` to `org.opensearch.search.profile` - rename `org.elasticsearch.search.query` to `org.opensearch.search.query` - rename `org.elasticsearch.search.suggest` to `org.opensearch.search.suggest` - rename other instances of Elasticsearch to OpenSearch in these packages. Signed-off-by: Rabi Panda <[email protected]>
✅ DCO Check Passed |
) As part of this commit we refactor the following in the o.e.search package: - rename `org.elasticsearch.search.fetch` to `org.opensearch.search.fetch` - rename `org.elasticsearch.search.internal` to `org.opensearch.search.internal` - rename `org.elasticsearch.search.profile` to `org.opensearch.search.profile` - rename `org.elasticsearch.search.query` to `org.opensearch.search.query` - rename `org.elasticsearch.search.suggest` to `org.opensearch.search.suggest` - rename other instances of Elasticsearch to OpenSearch in these packages. Signed-off-by: Rabi Panda <[email protected]>
) As part of this commit we refactor the following in the o.e.search package: - rename `org.elasticsearch.search.fetch` to `org.opensearch.search.fetch` - rename `org.elasticsearch.search.internal` to `org.opensearch.search.internal` - rename `org.elasticsearch.search.profile` to `org.opensearch.search.profile` - rename `org.elasticsearch.search.query` to `org.opensearch.search.query` - rename `org.elasticsearch.search.suggest` to `org.opensearch.search.suggest` - rename other instances of Elasticsearch to OpenSearch in these packages. Signed-off-by: Rabi Panda <[email protected]>
…oject#306) * make ChildrenAggregate as a SingleBucketAggregate Signed-off-by: Siva <[email protected]> * update CHANGELOG.md Signed-off-by: Siva <[email protected]> * add ChildAggregation test Signed-off-by: Siva <[email protected]> * fix CheckStyle violations for ChildAggregation test Signed-off-by: Siva <[email protected]> Signed-off-by: Siva <[email protected]>
Relates #160
As part of this commit we refactor the following in the o.e.search package:
org.elasticsearch.search.internal
toorg.opensearch.search.internal
org.elasticsearch.search.fetch
toorg.opensearch.search.fetch
org.elasticsearch.search.profile
toorg.opensearch.search.profile
org.elasticsearch.search.query
toorg.opensearch.search.query
org.elasticsearch.search.suggest
toorg.opensearch.search.suggest
Signed-off-by: Rabi Panda [email protected]