summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_encrypt.test
diff options
context:
space:
mode:
authorSergey Glukhov <Sergey.Glukhov@sun.com>2009-04-27 15:05:01 +0500
committerSergey Glukhov <Sergey.Glukhov@sun.com>2009-04-27 15:05:01 +0500
commit26cc84d947ca877f6f5e2551390ec8831e9f317b (patch)
tree2922b37a405f748f376e8101a1833ec8593b0973 /mysql-test/t/func_encrypt.test
parent4c566d13051c6757a7ac267c3ee9e0fc6b266c43 (diff)
downloadmariadb-git-26cc84d947ca877f6f5e2551390ec8831e9f317b.tar.gz
ENCRYPT function always returns NULL on windows.
The fix is to disable result log as we need to test valgrind error only.
Diffstat (limited to 'mysql-test/t/func_encrypt.test')
-rw-r--r--mysql-test/t/func_encrypt.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/func_encrypt.test b/mysql-test/t/func_encrypt.test
index 31cfae2be1d..879732fc81f 100644
--- a/mysql-test/t/func_encrypt.test
+++ b/mysql-test/t/func_encrypt.test
@@ -99,5 +99,7 @@ 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;