Skip to content

Commit e2ca711

Browse files
authored
Merge branch 'main' into fix/test/lookupJoinOnTimeSeriesIndex
2 parents d203b06 + cc02ac8 commit e2ca711

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

docs/reference/query-languages/esql/_snippets/functions/description/std_dev.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/_snippets/functions/examples/std_dev.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/definition/functions/std_dev.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/docs/functions/std_dev.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

muted-tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ tests:
55
- class: org.elasticsearch.smoketest.WatcherYamlRestIT
66
method: test {p0=watcher/usage/10_basic/Test watcher usage stats output}
77
issue: https://github.com/elastic/elasticsearch/issues/112189
8-
- class: org.elasticsearch.ingest.geoip.IngestGeoIpClientYamlTestSuiteIT
9-
issue: https://github.com/elastic/elasticsearch/issues/111497
108
- class: org.elasticsearch.packaging.test.PackagesSecurityAutoConfigurationTests
119
method: test20SecurityNotAutoConfiguredOnReInstallation
1210
issue: https://github.com/elastic/elasticsearch/issues/112635
@@ -513,6 +511,12 @@ tests:
513511
- class: org.elasticsearch.index.engine.ThreadPoolMergeExecutorServiceDiskSpaceTests
514512
method: testUnavailableBudgetBlocksNewMergeTasksFromStartingExecution
515513
issue: https://github.com/elastic/elasticsearch/issues/129148
514+
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeForkIT
515+
method: test {lookup-join.EnrichLookupStatsBug ASYNC}
516+
issue: https://github.com/elastic/elasticsearch/issues/129228
517+
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeForkIT
518+
method: test {lookup-join.EnrichLookupStatsBug SYNC}
519+
issue: https://github.com/elastic/elasticsearch/issues/129229
516520

517521
# Examples:
518522
#

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/StdDev.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ public class StdDev extends AggregateFunction implements ToAggregator {
3737

3838
@FunctionInfo(
3939
returnType = "double",
40-
description = "The standard deviation of a numeric field.",
40+
description = "The population standard deviation of a numeric field.",
4141
type = FunctionType.AGGREGATE,
4242
examples = {
4343
@Example(file = "stats", tag = "stdev"),
4444
@Example(
45-
description = "The expression can use inline functions. For example, to calculate the standard "
45+
description = "The expression can use inline functions. For example, to calculate the population standard "
4646
+ "deviation of each employee’s maximum salary changes, first use `MV_MAX` on each row, "
4747
+ "and then use `STD_DEV` on the result",
4848
file = "stats",

0 commit comments

Comments
 (0)