mariadb/mysql-test/r/not_embedded_server.result
unknown e884c5babc BUG#21650 not_embedded_server fails --with-ndbcluster
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
2006-08-15 19:10:10 +08:00

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;