mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
stateless tests: add test for https://github.com/ClickHouse/ClickHouse/issues/59094
This commit is contained in:
parent
55319c760d
commit
f4493d2544
@ -0,0 +1,30 @@
|
|||||||
|
0 0
|
||||||
|
1 0
|
||||||
|
2 0
|
||||||
|
3 0
|
||||||
|
4 0
|
||||||
|
5 0
|
||||||
|
6 0
|
||||||
|
7 0
|
||||||
|
8 0
|
||||||
|
9 0
|
||||||
|
0 0
|
||||||
|
1 0
|
||||||
|
2 0
|
||||||
|
3 0
|
||||||
|
4 0
|
||||||
|
5 0
|
||||||
|
6 0
|
||||||
|
7 0
|
||||||
|
8 0
|
||||||
|
9 0
|
||||||
|
0 0
|
||||||
|
1 0
|
||||||
|
2 0
|
||||||
|
3 0
|
||||||
|
4 0
|
||||||
|
5 0
|
||||||
|
6 0
|
||||||
|
7 0
|
||||||
|
8 0
|
||||||
|
9 0
|
@ -0,0 +1,25 @@
|
|||||||
|
CREATE TABLE test_table
|
||||||
|
(
|
||||||
|
`key` UInt32,
|
||||||
|
`_part_offset` DEFAULT 0
|
||||||
|
)
|
||||||
|
ENGINE = MergeTree
|
||||||
|
ORDER BY key;
|
||||||
|
|
||||||
|
INSERT INTO test_table (key) SELECT number
|
||||||
|
FROM numbers(10);
|
||||||
|
|
||||||
|
set allow_experimental_analyzer=0;
|
||||||
|
|
||||||
|
SELECT *
|
||||||
|
FROM test_table;
|
||||||
|
|
||||||
|
set allow_experimental_analyzer=1;
|
||||||
|
|
||||||
|
SELECT *
|
||||||
|
FROM test_table;
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
key,
|
||||||
|
_part_offset
|
||||||
|
FROM test_table;
|
Loading…
Reference in New Issue
Block a user