Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion documentation/query/sql/window-join.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ Look for these indicators in the plan:
5. Aggregate functions cannot reference columns from both tables simultaneously
6. WINDOW JOIN can be combined with another WINDOW JOIN, but not with other JOIN
types
7. **`GROUP BY` is not supported with WINDOW JOIN** - use a CTE or subquery instead
7. **`GROUP BY` and window functions are not supported with WINDOW JOIN** - use a CTE or subquery instead

### GROUP BY workaround

Expand Down
2 changes: 1 addition & 1 deletion documentation/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -419,13 +419,13 @@ module.exports = {
"query/sql/fill",
"query/sql/group-by",
"query/sql/join",
"query/sql/window-join",
"query/sql/latest-on",
"query/sql/limit",
"query/sql/order-by",
"query/sql/pivot",
"query/sql/sample-by",
"query/sql/where",
"query/sql/window-join",
"query/sql/with",
],
},
Expand Down