You've already forked mariadb-columnstore-engine
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:
committed by
GitHub
parent
df431ebad9
commit
8b8ee98fd2
@ -26,8 +26,14 @@ No table lock found for specified table lock ID
|
|||||||
select mcslastinsertid("t1");
|
select mcslastinsertid("t1");
|
||||||
mcslastinsertid("t1")
|
mcslastinsertid("t1")
|
||||||
0
|
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();
|
select mcsgetsqlcount();
|
||||||
mcsgetsqlcount()
|
mcsgetsqlcount()
|
||||||
Running SQL statements 0, Waiting SQL statments 0
|
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 TABLE t1;
|
||||||
DROP DATABASE cal_test_db;
|
DROP DATABASE cal_test_db;
|
||||||
|
@ -5,8 +5,14 @@ CREATE TABLE t1 (a DECIMAL(17,1)) ENGINE=ColumnStore;
|
|||||||
INSERT INTO t1 VALUES (-8999999999999999.9);
|
INSERT INTO t1 VALUES (-8999999999999999.9);
|
||||||
SELECT * FROM t1 WHERE a=0;
|
SELECT * FROM t1 WHERE a=0;
|
||||||
a
|
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');
|
SELECT calshowpartitions('t1','a');
|
||||||
calshowpartitions('t1','a')
|
calshowpartitions('t1','a')
|
||||||
Part# Min Max Status
|
Part# Min Max Status
|
||||||
0.0.1 -8999999999999999.9 -8999999999999999.9 Enabled
|
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;
|
DROP TABLE IF EXISTS t1;
|
||||||
|
@ -18,7 +18,9 @@ select mcsgetversion()=calgetversion();
|
|||||||
select mcsviewtablelock("t1");
|
select mcsviewtablelock("t1");
|
||||||
select mcscleartablelock(0);
|
select mcscleartablelock(0);
|
||||||
select mcslastinsertid("t1");
|
select mcslastinsertid("t1");
|
||||||
|
show processlist;
|
||||||
select mcsgetsqlcount();
|
select mcsgetsqlcount();
|
||||||
|
show processlist;
|
||||||
|
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
DROP DATABASE cal_test_db;
|
DROP DATABASE cal_test_db;
|
||||||
|
@ -15,7 +15,9 @@ if (!$func_exists)
|
|||||||
CREATE TABLE t1 (a DECIMAL(17,1)) ENGINE=ColumnStore;
|
CREATE TABLE t1 (a DECIMAL(17,1)) ENGINE=ColumnStore;
|
||||||
INSERT INTO t1 VALUES (-8999999999999999.9);
|
INSERT INTO t1 VALUES (-8999999999999999.9);
|
||||||
SELECT * FROM t1 WHERE a=0;
|
SELECT * FROM t1 WHERE a=0;
|
||||||
|
show processlist;
|
||||||
SELECT calshowpartitions('t1','a');
|
SELECT calshowpartitions('t1','a');
|
||||||
|
show processlist;
|
||||||
DROP TABLE IF EXISTS t1;
|
DROP TABLE IF EXISTS t1;
|
||||||
|
|
||||||
--disable_query_log
|
--disable_query_log
|
||||||
|
Reference in New Issue
Block a user