From 16a46cc75b5b5f322282c6f6987b7d5370d6aa1d Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 16 Sep 2004 15:01:12 +0500 Subject: Clean-up. The length of compress() may depend on zlib version, etc. mysql-test/r/func_compress.result: clean-up. The length of compress() may depend on zlib version, etc. mysql-test/t/func_compress.test: clean-up. The length of compress() may depend on zlib version, etc. --- mysql-test/r/func_compress.result | 6 +++--- mysql-test/t/func_compress.test | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mysql-test/r/func_compress.result b/mysql-test/r/func_compress.result index 4ff72d63144..11dbcca9431 100644 --- a/mysql-test/r/func_compress.result +++ b/mysql-test/r/func_compress.result @@ -69,6 +69,6 @@ Error 1259 ZLIB: Input data corrupted Error 1256 Uncompressed data size too large; the maximum size is 1048576 (probably, length of uncompressed data was corrupted) drop table t1; set @@max_allowed_packet=1048576*100; -select length(compress(repeat('aaaaaaaaaa', 10000000))); -length(compress(repeat('aaaaaaaaaa', 10000000))) -97214 +select compress(repeat('aaaaaaaaaa', 10000000)) is null; +compress(repeat('aaaaaaaaaa', 10000000)) is null +0 diff --git a/mysql-test/t/func_compress.test b/mysql-test/t/func_compress.test index 1384ef27cd2..7b70289d2c0 100644 --- a/mysql-test/t/func_compress.test +++ b/mysql-test/t/func_compress.test @@ -41,4 +41,4 @@ drop table t1; # set @@max_allowed_packet=1048576*100; -select length(compress(repeat('aaaaaaaaaa', 10000000))); +select compress(repeat('aaaaaaaaaa', 10000000)) is null; -- cgit v1.2.1