Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 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
6 changes: 6 additions & 0 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,12 @@ tests:
- class: org.elasticsearch.xpack.esql.inference.rerank.RerankOperatorTests
method: testSimpleCircuitBreaking
issue: https://github.com/elastic/elasticsearch/issues/133619
- class: org.elasticsearch.xpack.kql.parser.KqlParserBooleanQueryTests
method: testParseOrQuery
issue: https://github.com/elastic/elasticsearch/issues/133863
- class: org.elasticsearch.xpack.kql.parser.KqlParserBooleanQueryTests
method: testParseAndQuery
issue: https://github.com/elastic/elasticsearch/issues/133871
- class: org.elasticsearch.xpack.ml.integration.InferenceIT
method: testInferClassificationModel
issue: https://github.com/elastic/elasticsearch/issues/133448
Expand Down
23 changes: 23 additions & 0 deletions x-pack/plugin/esql/compute/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,28 @@ tasks.named('stringTemplates').configure {
}
}

File irateAggregatorInputFile = file("src/main/java/org/elasticsearch/compute/aggregation/X-IrateAggregator.java.st")
template {
it.properties = intProperties
it.inputFile = irateAggregatorInputFile
it.outputFile = "org/elasticsearch/compute/aggregation/IrateIntAggregator.java"
}
template {
it.properties = longProperties
it.inputFile = irateAggregatorInputFile
it.outputFile = "org/elasticsearch/compute/aggregation/IrateLongAggregator.java"
}
template {
it.properties = floatProperties
it.inputFile = irateAggregatorInputFile
it.outputFile = "org/elasticsearch/compute/aggregation/IrateFloatAggregator.java"
}
template {
it.properties = doubleProperties
it.inputFile = irateAggregatorInputFile
it.outputFile = "org/elasticsearch/compute/aggregation/IrateDoubleAggregator.java"
}

File fallibleStateInputFile = new File("${projectDir}/src/main/java/org/elasticsearch/compute/aggregation/X-FallibleState.java.st")
template {
it.properties = booleanProperties
Expand Down Expand Up @@ -601,6 +623,7 @@ tasks.named('stringTemplates').configure {
it.inputFile = fallibleArrayStateInputFile
it.outputFile = "org/elasticsearch/compute/aggregation/FloatFallibleArrayState.java"
}

File valuesAggregatorInputFile = new File("${projectDir}/src/main/java/org/elasticsearch/compute/aggregation/X-ValuesAggregator.java.st")
template {
it.properties = intProperties
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading