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

Fix compilation issues after upgrade to Lucene 10 #5053

Merged
merged 14 commits into from
Feb 11, 2025
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,17 @@ protected void populateData(Client tc) {
tc.admin()
.indices()
.create(
// FieldExistsQuery matches documents that contain a field that indexes
reta marked this conversation as resolved.
Show resolved Hide resolved
// norms or doc values.
new CreateIndexRequest("data").simpleMapping(
"@timestamp",
"type=date",
"host",
"type=text,norms=false",
"type=text,doc_values=false,norms=true",
"response",
"type=text,norms=false",
"type=text,doc_values=false,norms=true",
"non-existing",
"type=text,norms=false"
"type=text,doc_values=false,norms=true"
)
)
.actionGet();
Expand Down
Loading