mirror of
https://github.com/postgres/postgres.git
synced 2026-05-22 10:22:10 -04:00
RangeTblEntry.groupexprs was marked with the node attribute
query_jumble_ignore, causing a list of GROUP BY expressions to be
ignored during the query jumbling. For example, these two queries could
be grouped together within the same query ID:
SELECT count(*) FROM t GROUP BY a;
SELECT count(*) FROM t GROUP BY b;
However, as such queries use different GROUP BY clauses, they should be
split across multiple entries.
This fixes an oversight in
|
||
|---|---|---|
| .. | ||
| cleanup.sql | ||
| cursors.sql | ||
| dml.sql | ||
| entry_timestamp.sql | ||
| extended.sql | ||
| level_tracking.sql | ||
| oldextversions.sql | ||
| parallel.sql | ||
| planning.sql | ||
| privileges.sql | ||
| select.sql | ||
| squashing.sql | ||
| user_activity.sql | ||
| utility.sql | ||
| wal.sql | ||