1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Debug mtr 20220720 (#2470)

* Update udf_calshowpartitions.test

* Update mcs_named_udfs.test

* Update udf_calshowpartitions.result

* Update mcs_named_udfs.result
This commit is contained in:
mariadb-KirillPerov
2022-07-22 20:42:22 +03:00
committed by GitHub
parent df431ebad9
commit 8b8ee98fd2
4 changed files with 16 additions and 0 deletions

View File

@ -26,8 +26,14 @@ No table lock found for specified table lock ID
select mcslastinsertid("t1");
mcslastinsertid("t1")
0
show processlist;
Id User Host db Command Time State Info Progress
443 root localhost cal_test_db Query 0 starting show processlist 0.000
select mcsgetsqlcount();
mcsgetsqlcount()
Running SQL statements 0, Waiting SQL statments 0
show processlist;
Id User Host db Command Time State Info Progress
443 root localhost cal_test_db Query 0 starting show processlist 0.000
DROP TABLE t1;
DROP DATABASE cal_test_db;

View File

@ -5,8 +5,14 @@ CREATE TABLE t1 (a DECIMAL(17,1)) ENGINE=ColumnStore;
INSERT INTO t1 VALUES (-8999999999999999.9);
SELECT * FROM t1 WHERE a=0;
a
show processlist;
Id User Host db Command Time State Info Progress
450 root localhost test Query 0 starting show processlist 0.000
SELECT calshowpartitions('t1','a');
calshowpartitions('t1','a')
Part# Min Max Status
0.0.1 -8999999999999999.9 -8999999999999999.9 Enabled
show processlist;
Id User Host db Command Time State Info Progress
450 root localhost test Query 0 starting show processlist 0.000
DROP TABLE IF EXISTS t1;

View File

@ -18,7 +18,9 @@ select mcsgetversion()=calgetversion();
select mcsviewtablelock("t1");
select mcscleartablelock(0);
select mcslastinsertid("t1");
show processlist;
select mcsgetsqlcount();
show processlist;
DROP TABLE t1;
DROP DATABASE cal_test_db;

View File

@ -15,7 +15,9 @@ if (!$func_exists)
CREATE TABLE t1 (a DECIMAL(17,1)) ENGINE=ColumnStore;
INSERT INTO t1 VALUES (-8999999999999999.9);
SELECT * FROM t1 WHERE a=0;
show processlist;
SELECT calshowpartitions('t1','a');
show processlist;
DROP TABLE IF EXISTS t1;
--disable_query_log