mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Added a test from Anton Popov
This commit is contained in:
parent
88f0be8933
commit
757be55238
@ -0,0 +1,4 @@
|
|||||||
|
1 1
|
||||||
|
1 2
|
||||||
|
1 3
|
||||||
|
1 4
|
5
dbms/tests/queries/0_stateless/01087_index_set_ubsan.sql
Normal file
5
dbms/tests/queries/0_stateless/01087_index_set_ubsan.sql
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
DROP TABLE IF EXISTS t;
|
||||||
|
create table t (i Int, a Int, s String, index ind_s (s) type set(1) granularity 1) engine = MergeTree order by i;
|
||||||
|
insert into t values (1, 1, 'a') (2, 1, 'a') (3, 1, 'a') (4, 1, 'a');
|
||||||
|
SELECT a, i from t ORDER BY a, i;
|
||||||
|
DROP TABLE t;
|
Loading…
Reference in New Issue
Block a user