mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
6e5ca12b6a
Type of 'Slave_running' status variable is changed to bool mysql-test/r/compress.result: test result mysql-test/r/rpl_packet.result: test result mysql-test/t/compress.test: test case mysql-test/t/rpl_packet.test: test case sql/mysqld.cc: Type of 'Slave_running' status variable is changed to bool
19 lines
508 B
Text
19 lines
508 B
Text
# Turn on compression between the client and server
|
|
# and run a number of tests
|
|
|
|
# Can't test with embedded server
|
|
-- source include/not_embedded.inc
|
|
|
|
-- source include/have_compress.inc
|
|
|
|
connect (comp_con,localhost,root,,,,,COMPRESS);
|
|
|
|
# Check compression turned on
|
|
SHOW STATUS LIKE 'Compression';
|
|
select * from information_schema.session_status where variable_name= 'COMPRESSION';
|
|
|
|
# Source select test case
|
|
-- source include/common-tests.inc
|
|
|
|
# Check compression turned on
|
|
SHOW STATUS LIKE 'Compression';
|