for tumbling window $w in (2, 4, 6, 8, 10, 12, 14)
start at $s when fn:true()
only end at $e when $e - $s eq 2
return <window>{ $w }</window>
이
<window>2 4 6</window>
<window>8 10 12</window>
누군가가 설명 할 수는 왜 그것을 < 2 4 6>, < 8 10 12>? 왜 단지 3 개의 값이 < 2 4 6>, < 8 10 12>인지, 어떻게 2 4 6이나 8 10 12를 얻는가?