mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 15:47:23 -04:00
Export random sampler agg from server (#104747)
The server module exports the classes needed to use most aggregations, but the random sampler aggregation was missed. (I think it's because the PRs to add random sampler and to add modularization in general were both long-running and were in flight around the same time.) This PR adds an export for the random sampler agg, so that it can be used from plugins.
This commit is contained in:
parent
b4345d9d91
commit
4e91d690e5
1 changed files with 1 additions and 0 deletions
|
@ -333,6 +333,7 @@ module org.elasticsearch.server {
|
|||
exports org.elasticsearch.search.aggregations.bucket.nested;
|
||||
exports org.elasticsearch.search.aggregations.bucket.range;
|
||||
exports org.elasticsearch.search.aggregations.bucket.sampler;
|
||||
exports org.elasticsearch.search.aggregations.bucket.sampler.random;
|
||||
exports org.elasticsearch.search.aggregations.bucket.terms;
|
||||
exports org.elasticsearch.search.aggregations.bucket.terms.heuristic;
|
||||
exports org.elasticsearch.search.aggregations.metrics;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue