mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
10 lines
271 B
Text
10 lines
271 B
Text
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;
|