diff --git a/documentation/query/sql/window-join.md b/documentation/query/sql/window-join.md index bcb4ea7a8..35df75f95 100644 --- a/documentation/query/sql/window-join.md +++ b/documentation/query/sql/window-join.md @@ -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 diff --git a/documentation/sidebars.js b/documentation/sidebars.js index b39f153f3..78f16f3ff 100644 --- a/documentation/sidebars.js +++ b/documentation/sidebars.js @@ -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", ], },