diff options
author | Michael Widenius <monty@mariadb.org> | 2018-03-09 14:05:35 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-03-29 13:59:44 +0300 |
commit | a7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch) | |
tree | 70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/main/compress.test | |
parent | ab1941266c59a19703a74b5593cf3f508a5752d7 (diff) | |
download | mariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz |
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/main/compress.test')
-rw-r--r-- | mysql-test/main/compress.test | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/mysql-test/main/compress.test b/mysql-test/main/compress.test new file mode 100644 index 00000000000..8fc21d9c961 --- /dev/null +++ b/mysql-test/main/compress.test @@ -0,0 +1,31 @@ +# 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 +# Slow test, don't run during staging part +-- source include/not_staging.inc + +# Save the initial number of concurrent sessions +--source include/count_sessions.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'; + +connection default; +disconnect comp_con; + +# Wait till all disconnects are completed +--source include/wait_until_count_sessions.inc + |