1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Workaround non portable use of "grep" and "cut" by loading the whole processlist

into temporary table and selecting the correct row with SQL
This commit is contained in:
unknown
2007-02-26 09:16:22 +01:00
parent f80babd617
commit 9d616d572c
2 changed files with 26 additions and 4 deletions

View File

@ -92,7 +92,16 @@ create temporary table t3 (f int);
create temporary table t4 (f int);
create table t5 (f int);
drop table if exists t999;
create temporary table t999 (f int);
create temporary table t999(
id int,
user char(255),
host char(255),
db char(255),
Command char(255),
time int,
State char(255),
info char(255)
);
LOAD DATA INFILE "./tmp/bl_dump_thread_id" into table t999;
drop table t999;
insert into t4 values (1);