mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
e884c5babc
make test ignore NDB injector thread mysql-test/r/not_embedded_server.result: Use INFORMATION_SCHEMA for getting PROCESSLIST so we can exclude the NDB Binlog Injector thread as it may/may not be running depending on if --with-ndbcluster is specified to mysql-test-run mysql-test/t/not_embedded_server.test: Use INFORMATION_SCHEMA for getting PROCESSLIST so we can exclude the NDB Binlog Injector thread as it may/may not be running depending on if --with-ndbcluster is specified to mysql-test-run
6 lines
359 B
Text
6 lines
359 B
Text
prepare stmt1 from ' SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST WHERE COMMAND!=\'Daemon\' ';
|
|
execute stmt1;
|
|
ID USER HOST DB COMMAND TIME STATE INFO
|
|
number root localhost test Query time preparing SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST WHERE COMMAND!='Daemon'
|
|
number event_scheduler localhost NULL Connect time Suspended NULL
|
|
deallocate prepare stmt1;
|