1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +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,64 @@
DROP DATABASE IF EXISTS mcs114_db;
CREATE DATABASE mcs114_db;
USE mcs114_db;
SET default_storage_engine=Columnstore;
SELECT 1+2/*hello*/+3;
1+2/*hello*/+3
6
SELECT 1 /* long
multi line comment */;
1
1
SELECT 1 /*!32301 +1 */;
1 +1
2
SELECT 1 /*!952301 +1 */;
1
1
SELECT 1--1;
1--1
2
SELECT 1 # The rest of the row will be ignored
;
1
1
/* line with only comment */;
SELECT 1 /*M! +1 */;
1 +1
2
SELECT 1 /*M!50000 +1 */;
1 +1
2
SELECT 1 /*M!50300 +1 */;
1 +1
2
SELECT 2 /*M!99999 +1 */;
2 +1
3
SELECT 2 /*M!100000 +1 */;
2 +1
3
SELECT 2 /*M!999999 +1 */;
2
2
SELECT 2 /*M!0000 +1 */;
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '0000 +1 */' at line 1
SELECT 1 /*!50699 +1*/;
1 +1
2
SELECT 1 /*!50700 +1*/;
1
1
SELECT 1 /*!50999 +1*/;
1
1
SELECT 1 /*!99999 +1*/;
1
1
SELECT 1 /*!100000 +1*/;
1 +1
2
SELECT 1 /*!110000 +1*/;
1
1
DROP DATABASE mcs114_db;