~vadim-tk/percona-server/percona-5.5.15-galera

« back to all changes in this revision

Viewing changes to mysql-test/t/ssl_and_innodb.test

  • Committer: root
  • Date: 2011-09-10 16:37:18 UTC
  • Revision ID: root@r815.office.percona.com-20110910163718-ydh4zj8hcdgoyavb
Porting Galera to 5.5.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- source include/have_innodb.inc
 
2
-- source include/have_ssl_crypto_functs.inc
 
3
 
 
4
CREATE TABLE t1(a int) engine=innodb;
 
5
INSERT INTO t1 VALUES (1);
 
6
 
 
7
SELECT DISTINCT
 
8
convert((SELECT des_decrypt(2,1) AS a FROM t1 WHERE @a:=1), signed) as d
 
9
FROM t1 ;
 
10
 
 
11
DROP TABLE t1;