summaryrefslogtreecommitdiff
path: root/mysql-test/main/func_encrypt.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/func_encrypt.test')
-rw-r--r--mysql-test/main/func_encrypt.test15
1 files changed, 0 insertions, 15 deletions
diff --git a/mysql-test/main/func_encrypt.test b/mysql-test/main/func_encrypt.test
index e27a2bd46d3..4a8c20e3dbc 100644
--- a/mysql-test/main/func_encrypt.test
+++ b/mysql-test/main/func_encrypt.test
@@ -89,21 +89,6 @@ explain extended select des_decrypt(des_encrypt("hello",4),'password2'), des_dec
# End of 4.1 tests
-#
-# Bug#44365 valgrind warnings with encrypt() function
-#
---disable_warnings
-drop table if exists t1;
---enable_warnings
-create table t1 (f1 smallint(6) default null, f2 mediumtext character set utf8)
-engine=myisam default charset=latin1;
-insert into t1 values (null,'contraction\'s');
-insert into t1 values (-15818,'requirement\'s');
---disable_result_log
-select encrypt(f1,f2) as a from t1,(select encrypt(f1,f2) as b from t1) a;
---enable_result_log
-drop table t1;
-
--echo #
--echo # Start of 10.1 tests
--echo #