mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Split test cases
This commit is contained in:
parent
6be9d7b254
commit
35eabcc9d1
@ -1,9 +1,3 @@
|
||||
case 1
|
||||
9900
|
||||
9910
|
||||
9920
|
||||
case 2
|
||||
9990
|
||||
18679 31
|
||||
0
|
||||
10
|
@ -1,15 +1,3 @@
|
||||
SELECT 'case 1';
|
||||
SELECT number FROM numbers_mt(10000)
|
||||
WHERE (number % 10) = 0
|
||||
ORDER BY number ASC
|
||||
LIMIT 990, 3;
|
||||
|
||||
SELECT 'case 2';
|
||||
SELECT number FROM numbers_mt(10000)
|
||||
WHERE (number % 10) = 0
|
||||
ORDER BY number ASC
|
||||
LIMIT 999, 20 SETTINGS max_block_size = 31;
|
||||
|
||||
--- The following query was buggy before, so let's use it as a test case
|
||||
WITH
|
||||
toUInt64(-1) AS umax,
|
@ -0,0 +1,6 @@
|
||||
case 1
|
||||
9900
|
||||
9910
|
||||
9920
|
||||
case 2
|
||||
9990
|
@ -0,0 +1,11 @@
|
||||
SELECT 'case 1';
|
||||
SELECT number FROM numbers_mt(10000)
|
||||
WHERE (number % 10) = 0
|
||||
ORDER BY number ASC
|
||||
LIMIT 990, 3;
|
||||
|
||||
SELECT 'case 2';
|
||||
SELECT number FROM numbers_mt(10000)
|
||||
WHERE (number % 10) = 0
|
||||
ORDER BY number ASC
|
||||
LIMIT 999, 20 SETTINGS max_block_size = 31;
|
Loading…
Reference in New Issue
Block a user