1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-4674 Fix ColumnStore to run MTR tests in a build directory

This commit is contained in:
Alexander Barkov
2021-04-13 11:25:25 +04:00
parent d8b473329f
commit 75e3bbc31e
1874 changed files with 1 additions and 0 deletions

View File

@ -0,0 +1,14 @@
SET default_storage_engine=ColumnStore;
DROP DATABASE IF EXISTS func_bit_mcs;
CREATE DATABASE func_bit_mcs;
USE func_bit_mcs;
#
# MCOL-4666 Empty set when using BIT OR and BIT AND functions in WHERE
#
CREATE TABLE t1 (a BLOB);
INSERT INTO t1 VALUES ('1');
SELECT a|1 FROM t1;
ERROR HY000: Internal error: Illegal parameter data type blob for operation bitor
DROP TABLE t1;
DROP DATABASE func_bit_mcs;
USE test;