mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
MDEV-27104 deprecate DES_ENCRYPT/DECRYPT functions
This commit is contained in:
@ -120,7 +120,9 @@ CREATE TABLE t1 (
|
||||
b BLOB DEFAULT DES_ENCRYPT(a, 'passwd'),
|
||||
c TEXT DEFAULT DES_DECRYPT(b, 'passwd')
|
||||
);
|
||||
--disable_warnings
|
||||
SHOW CREATE TABLE t1;
|
||||
--enable_warnings
|
||||
INSERT INTO t1 (a) VALUES ('test');
|
||||
SELECT c FROM t1;
|
||||
DROP TABLE t1;
|
||||
|
Reference in New Issue
Block a user