diff options
Diffstat (limited to 'mysql-test/main/ssl_and_innodb.result')
-rw-r--r-- | mysql-test/main/ssl_and_innodb.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/main/ssl_and_innodb.result b/mysql-test/main/ssl_and_innodb.result new file mode 100644 index 00000000..21d98908 --- /dev/null +++ b/mysql-test/main/ssl_and_innodb.result @@ -0,0 +1,10 @@ +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 +Warnings: +Note 1287 'des_decrypt' is deprecated and will be removed in a future release +DROP TABLE t1; |