summaryrefslogtreecommitdiff
path: root/mysql-test/main/ssl_and_innodb.result
blob: 71373fc4033bee3e4cac98a72c025598ef651f5c (plain)
1
2
3
4
5
6
7
8
CREATE TABLE t1(a int) engine=innodb;
INSERT INTO t1 VALUES (1);
SELECT DISTINCT
convert((SELECT des_decrypt(2,1) AS a FROM t1 WHERE @a:=1), signed) as d
FROM t1 ;
d
2
DROP TABLE t1;