mirror of
https://github.com/MariaDB/server.git
synced 2025-05-25 13:42:52 +03:00
mysql-test/r/ps_grant.result: Deallocate prepare statements Moved test for 'show full processlist' to not_embedded_server.test becasue it's shouldn't be here and it could fail on a slow computer where previous connections has not yet disconnected mysql-test/t/ps_grant.test: Deallocate prepare statements Moved test for 'show full processlist' to not_embedded_server.test becasue it's shouldn't be here and it could fail on a slow computer where previous connections has not yet disconnected sql/sql_lex.cc: Fixed typo mysql-test/r/not_embedded_server.result: New BitKeeper file ``mysql-test/r/not_embedded_server.result'' mysql-test/t/not_embedded_server.test: New BitKeeper file ``mysql-test/t/not_embedded_server.test'' BitKeeper/etc/ignore: added ndb/tools/ndb_config
17 lines
396 B
Plaintext
17 lines
396 B
Plaintext
#
|
|
# Here we collect tests that doesn't work with the embedded server
|
|
#
|
|
|
|
-- source include/not_embedded.inc
|
|
|
|
#
|
|
# Show full process list with prepare
|
|
# To not show other connections, this must be the first test and we must
|
|
# have a server restart before this one
|
|
#
|
|
|
|
prepare stmt1 from ' show full processlist ';
|
|
--replace_column 1 number 6 time 3 localhost
|
|
execute stmt1;
|
|
deallocate prepare stmt1;
|