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.

26 lines
187 B
Plaintext
Raw Normal View History

2023-10-08 20:26:18 +00:00
Negative tests
Const arrays
2023-05-11 12:53:39 +00:00
23
3
101
[1,2,3,4]
[4,3,2,1]
([4,3,2,1],[1,2,3,4])
([1,3,5],[2,4,6])
2023-10-08 20:26:18 +00:00
Non-const arrays
2023-05-11 12:53:39 +00:00
0
1
3
6
10
[]
2023-05-11 13:47:21 +00:00
[0]
[1,0]
[2,1,0]
[3,2,1,0]
[]
[0]
[1,0]
[1,0,2]
[3,1,0,2]