mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
12 lines
543 B
Plaintext
12 lines
543 B
Plaintext
-- negative tests
|
|
-- const and non-const inputs
|
|
[1,2,3,4,5] 1 [[1],[2],[3],[4],[5]] [[1],[2],[3],[4],[5]]
|
|
[1,2,3,4,5] 3 [[1,2,3],[2,3,4],[3,4,5]] [[1,2,3],[2,3,4],[3,4,5]]
|
|
[1,2,3,4,5] 5 [[1,2,3,4,5]] [[1,2,3,4,5]]
|
|
['ab','c','de','','hi'] 1 [['ab'],['c'],['de'],[''],['hi']] [['ab'],['c'],['de'],[''],['hi']]
|
|
['ab','c','de','','hi'] 3 [['ab','c','de'],['c','de',''],['de','','hi']] [['ab','c','de'],['c','de',''],['de','','hi']]
|
|
['ab','c','de','','hi'] 5 [['ab','c','de','','hi']] [['ab','c','de','','hi']]
|
|
-- special cases
|
|
[[2],[1]]
|
|
[[2],[1]]
|