func_compress.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_compress.inc
  2. #
  3. # Test for compress and uncompress functions:
  4. #
  5. select @test_compress_string:='string for test compress function aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa ';
  6. select length(@test_compress_string);
  7. select uncompress(compress(@test_compress_string));
  8. explain extended select uncompress(compress(@test_compress_string));
  9. select uncompressed_length(compress(@test_compress_string))=length(@test_compress_string);
  10. explain extended select uncompressed_length(compress(@test_compress_string))=length(@test_compress_string);
  11. select uncompressed_length(compress(@test_compress_string));
  12. select length(compress(@test_compress_string))<length(@test_compress_string);
  13. create table t1 (a text, b char(255), c char(4)) engine=myisam;
  14. insert into t1 (a,b,c) values (compress(@test_compress_string),compress(@test_compress_string),'d ');
  15. select uncompress(a) from t1;
  16. select uncompress(b) from t1;
  17. select concat('|',c,'|') from t1;
  18. drop table t1;
  19. select compress("");
  20. select uncompress("");
  21. select uncompress(compress(""));
  22. select uncompressed_length("");
  23. #
  24. # errors
  25. #
  26. create table t1 (a text);
  27. insert t1 values (compress(null)), ('ABBBBBBBB'), (compress(space(50000))), (space(50000));
  28. select length(a) from t1;
  29. select length(uncompress(a)) from t1;
  30. drop table t1;
  31. #
  32. # Bug #5497: a problem with large strings
  33. # note that when LOW_MEMORY is set the "test" below is meaningless
  34. #
  35. set @@max_allowed_packet=1048576*100;
  36. --replace_result "''" XXX "'1'" XXX
  37. eval select compress(repeat('aaaaaaaaaa', IF('$LOW_MEMORY', 10, 10000000))) is null;
  38. # End of 4.1 tests