mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-21 19:45:56 +03:00
This patch improves handling of NULLs in textual fields in ColumnStore. Previously empty strings were considered NULLs and it could be a problem if data scheme allows for empty strings. It was also one of major reasons of behavior difference between ColumnStore and other engines in MariaDB family. Also, this patch fixes some other bugs and incorrect behavior, for example, incorrect comparison for "column <= ''" which evaluates to constant True for all purposes before this patch.
46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
DROP DATABASE IF EXISTS mcs285_db;
|
|
CREATE DATABASE mcs285_db;
|
|
USE mcs285_db;
|
|
CREATE TABLE t1 (a INT, b CHAR(15))ENGINE=Columnstore;
|
|
INSERT INTO t1 VALUES (NULL, NULL),(1, 'mariadb'),(2, 'columnstore'),(3, 'Innodb');
|
|
SELECT RIGHT('mariadb cs', 2) FROM t1 LIMIT 1;
|
|
RIGHT('mariadb cs', 2)
|
|
cs
|
|
SELECT RIGHT('mariadb cs', 3) FROM t1 LIMIT 1;
|
|
RIGHT('mariadb cs', 3)
|
|
cs
|
|
SELECT RIGHT('mariadb cs', 4) FROM t1 LIMIT 1;
|
|
RIGHT('mariadb cs', 4)
|
|
b cs
|
|
SELECT b, RIGHT(b, 0) FROM t1 ORDER BY 1;
|
|
b RIGHT(b, 0)
|
|
NULL NULL
|
|
columnstore
|
|
Innodb
|
|
mariadb
|
|
SELECT b, RIGHT(b, -1) FROM t1 ORDER BY 1;
|
|
b RIGHT(b, -1)
|
|
NULL NULL
|
|
columnstore
|
|
Innodb
|
|
mariadb
|
|
SELECT b, RIGHT(b, 6) FROM t1 ORDER BY 1;
|
|
b RIGHT(b, 6)
|
|
NULL NULL
|
|
columnstore nstore
|
|
Innodb Innodb
|
|
mariadb ariadb
|
|
SELECT b, RIGHT(b, 9) FROM t1 ORDER BY 1;
|
|
b RIGHT(b, 9)
|
|
NULL NULL
|
|
columnstore lumnstore
|
|
Innodb Innodb
|
|
mariadb mariadb
|
|
SELECT b, RIGHT(concat(b, '_mmm'), 10) FROM t1 ORDER BY 1;
|
|
b RIGHT(concat(b, '_mmm'), 10)
|
|
NULL NULL
|
|
columnstore nstore_mmm
|
|
Innodb Innodb_mmm
|
|
mariadb ariadb_mmm
|
|
DROP DATABASE mcs285_db;
|