Skip to content

Commit 13b8986

Browse files
committed
Fixed image width
1 parent 855433e commit 13b8986

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

_mydocs/dax-internals/optimization-notes/window-optimization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The query plan without the optimization shows the _O ( n * n )_ complexity in th
3434
<img src="images/WINDOW-on2-queryplan.png" width=600>
3535

3636
With the optimization enabled, the query plan shows a much more efficient plan that hides the internal implementation but results in _O ( n * log(n) )_ complexity. The presence of the optimization can be verified by the presence of the **WindowAggSpool** node in the physical query plan.
37-
<img src="images/WINDOW-onlogn-queryplan.png" width=600>
37+
<img src="images/WINDOW-onlogn-queryplan.png" width=800>
3838

3939
## Unsupported scenarios
4040
The optimization is not applied on iterators consuming the WINDOW result and on non-additive expressions.

0 commit comments

Comments
 (0)