Skip to content

Commit b56c38d

Browse files
committed
* Added breaking change section for GROUP BY behavior: now it considers null or empty values as a separate group/bucket. Previously, they were ignored.
* This is part of backporting of #32832
1 parent 7d8780d commit b56c38d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

docs/reference/migration/migrate_6_5.asciidoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ This section discusses the changes that you need to be aware of when migrating
55
your application to Elasticsearch 6.5.
66

77
* <<breaking_65_logging_changes>>
8+
* <<breaking_65_sql_changes>>
89

910
See also <<release-highlights>> and <<es-release-notes>>.
1011

@@ -23,3 +24,13 @@ Elasticsearch will log a warning on startup and log with the new pattern. It
2324
will not change the logging configuration files though. You should make this
2425
change before 7.0 because in 7.0 Elasticsearch will no longer automatically
2526
add the node name to the logging configuration if it isn't already present.
27+
28+
[[breaking_65_sql_changes]]
29+
=== SQL plugin changes
30+
31+
==== Grouping by columns with missing values will create an additional group
32+
33+
An additional group will be present in the result of requests containing a
34+
`GROUP BY` for a column that has missing values in the returned documents.
35+
The records with missing values in the grouped by column will be collectively
36+
considered a single bucket.

0 commit comments

Comments
 (0)