mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
42de9a3ed9
handled correctly
15 lines
531 B
Text
15 lines
531 B
Text
-- source include/have_crypt.inc
|
|
|
|
select length(encrypt('foo', 'ff')) <> 0;
|
|
--replace_result $1$aa$4OSUA5cjdx0RUQ08opV27/ aaqPiZY5xR5l.
|
|
select old_password('test'), password('test');
|
|
select length(encrypt('test')), encrypt('test','aa');
|
|
|
|
drop table if exists t1;
|
|
create table t1 (name varchar(50), pw varchar(16));
|
|
insert into t1 values ('tom', password('my_pass'));
|
|
set @pass='my_pass';
|
|
select name from t1 where name='tom' and pw=password(@pass);
|
|
select name from t1 where name='tom' and pw=password(@undefined);
|
|
drop table t1;
|
|
|