mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
Added DO command
Docs/manual.texi: ChangeLog sql/gen_lex_hash.cc: Safety fix
This commit is contained in:
parent
f8b4629cf7
commit
1808d80fb3
10 changed files with 106 additions and 15 deletions
|
|
@ -114,6 +114,7 @@ static SYMBOL symbols[] = {
|
|||
{ "DESCRIBE", SYM(DESCRIBE),0,0},
|
||||
{ "DISTINCT", SYM(DISTINCT),0,0},
|
||||
{ "DISTINCTROW", SYM(DISTINCT),0,0}, /* Access likes this */
|
||||
{ "DO", SYM(DO_SYM),0,0},
|
||||
{ "DOUBLE", SYM(DOUBLE_SYM),0,0},
|
||||
{ "DROP", SYM(DROP),0,0},
|
||||
{ "DUMPFILE", SYM(DUMPFILE),0,0},
|
||||
|
|
@ -466,9 +467,9 @@ static SYMBOL sql_functions[] = {
|
|||
{ "TO_DAYS", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_to_days)},
|
||||
{ "TRIM", SYM(TRIM),0,0},
|
||||
{ "UCASE", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_ucase)},
|
||||
{ "UPPER", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_ucase)},
|
||||
{ "UNIQUE_USERS", SYM(UNIQUE_USERS),0,0},
|
||||
{ "UNIX_TIMESTAMP", SYM(UNIX_TIMESTAMP),0,0},
|
||||
{ "UPPER", SYM(FUNC_ARG1),0,CREATE_FUNC(create_func_ucase)},
|
||||
{ "USER", SYM(USER),0,0},
|
||||
{ "VERSION", SYM(FUNC_ARG0),0,CREATE_FUNC(create_func_version)},
|
||||
{ "WEEK", SYM(WEEK_SYM),0,0},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue