mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-21 19:45:56 +03:00
28 lines
788 B
Plaintext
28 lines
788 B
Plaintext
# -------------------------------------------------------------- #
|
|
# Test case migrated from regression test suite: bug3012.sql
|
|
#
|
|
# Author: Daniel Lee, daniel.lee@mariadb.com
|
|
# -------------------------------------------------------------- #
|
|
#
|
|
--source ../include/have_columnstore.inc
|
|
#
|
|
USE tpch1;
|
|
#
|
|
--disable_warnings
|
|
drop table if exists bug3012;
|
|
--enable_warnings
|
|
|
|
create table bug3012 (anz int, mx varchar(20)) engine=columnstore;
|
|
insert into bug3012 values (1,'hotmail.com'), (2,'hotmail.com'), (3,'foo.com'),
|
|
(4,'www.1and1.net'), (5,'1and1.com');
|
|
|
|
select * from bug3012;
|
|
SELECT * FROM bug3012 WHERE (mx RLIKE 'hotmail' OR mx RLIKE '1and1');
|
|
SELECT * FROM bug3012 WHERE (mx RLIKE '1and1' OR mx RLIKE 'hotmail');
|
|
|
|
--disable_warnings
|
|
drop table if exists bug3012;
|
|
--enable_warnings
|
|
#
|
|
|