diff options
author | unknown <peter@mysql.com> | 2002-10-06 13:42:16 +0400 |
---|---|---|
committer | unknown <peter@mysql.com> | 2002-10-06 13:42:16 +0400 |
commit | 8640cd354413508b698817dce787827c370e7b9a (patch) | |
tree | ec440e8cca80b5a48de9c9b085968243421b8b8d /sql/item_create.h | |
parent | 748191fd807d6f380b48b9331a8d8cf333d2bb45 (diff) | |
download | mariadb-git-8640cd354413508b698817dce787827c370e7b9a.tar.gz |
One more commit to do the merge of new 4.1 tree
client/mysqladmin.c:
Handle new password.c prototypes
include/mysql_com.h:
New prototypes
libmysql/Makefile.shared:
Client need sha1 compiled in now
libmysql/password.c:
Replace copy with symlink
mysql-test/r/func_crypt.result:
Fix test results to handle new password function
mysql-test/t/func_crypt.test:
New tests for new password function
sql/item_create.cc:
add old_password() function
sql/item_create.h:
add old_password() function
sql/item_strfunc.cc:
add old_password() function
changes to new password.c functions prototypes
sql/item_strfunc.h:
add old_password function
handle new prototypes
sql/lex.h:
add OLD_PASSWORD function
sql/password.c:
Continue to work on new password handling
sql/sql_acl.cc:
Handle new passwords
sql/sql_yacc.yy:
Changes for new prototypes
Diffstat (limited to 'sql/item_create.h')
-rw-r--r-- | sql/item_create.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/item_create.h b/sql/item_create.h index 6d9cef04c13..937ea782273 100644 --- a/sql/item_create.h +++ b/sql/item_create.h @@ -66,6 +66,7 @@ Item *create_func_monthname(Item* a); Item *create_func_nullif(Item* a, Item *b); Item *create_func_oct(Item *); Item *create_func_ord(Item* a); +Item *create_func_old_password(Item* a); Item *create_func_period_add(Item* a, Item *b); Item *create_func_period_diff(Item* a, Item *b); Item *create_func_pi(void); |