ClickHouse/tests/queries/0_stateless/02718_array_fold.reference

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
2.4 KiB
Plaintext
Raw Normal View History

2023-05-11 12:53:39 +00:00
23
------------------
3
------------------
101
------------------
269
------------------
[1,2,3,4]
------------------
[4,3,2,1]
------------------
([4,3,2,1],[1,2,3,4])
------------------
([1,3,5],[2,4,6])
------------------
0
0
1
3
6
10
------------------
[]
[0]
[1,0]
[2,1,0]
[3,2,1,0]
[4,3,2,1,0]
------------------
[]
[0]
[1,0]
[1,0,2]
[3,1,0,2]
[3,1,0,2,4]
------------------
[(0,0)]
[(0,1),(0,0)]
[(1,2),(0,1),(0,0)]
[(2,3),(1,2),(0,1),(0,0)]
[(3,4),(2,3),(1,2),(0,1),(0,0)]
[(4,5),(3,4),(2,3),(1,2),(0,1),(0,0)]
------------------
[]
['0']
['0','1']
['0','1','2']
['0','1','2','3']
['0','1','2','3','4']