You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-05 15:41:14 +03:00
29 lines
748 B
Plaintext
29 lines
748 B
Plaintext
USE tpch1;
|
|
drop table if exists bug3137;
|
|
CREATE TABLE `bug3137` (
|
|
`id` INTEGER DEFAULT NULL,
|
|
`value` INTEGER DEFAULT NULL
|
|
) ENGINE=Columnstore DEFAULT CHARSET=utf8;
|
|
INSERT INTO `bug3137` (id, value) VALUES (0, 1);
|
|
INSERT INTO `bug3137` (id, value) VALUES (1, 1);
|
|
INSERT INTO `bug3137` (id, value) VALUES (2, 2);
|
|
INSERT INTO `bug3137` (id, value) VALUES (3, 2);
|
|
INSERT INTO `bug3137` (id, value) VALUES (4, 3);
|
|
INSERT INTO `bug3137` (id, value) VALUES (5, 3);
|
|
select * from bug3137 where (value = 1 OR 1 = 1);
|
|
id value
|
|
0 1
|
|
1 1
|
|
2 2
|
|
3 2
|
|
4 3
|
|
5 3
|
|
select * from bug3137 where id >= 0 and (value = 1 or 1 = -1);
|
|
id value
|
|
0 1
|
|
1 1
|
|
select n_nationkey from nation where n_nationkey <=5 and (n_nationkey=2 or 1=-1);
|
|
n_nationkey
|
|
2
|
|
drop table if exists bug3137;
|