mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-new-maint
into zippy.cornsilk.net:/home/cmiller/work/mysql/merge/mysql-5.1-new-maint
This commit is contained in:
commit
e0a928e804
2 changed files with 9 additions and 3 deletions
|
@ -1170,6 +1170,7 @@ sql/*.ds?
|
|||
sql/*.vcproj
|
||||
sql/.gdbinit
|
||||
sql/client.c
|
||||
sql/f.c
|
||||
sql/gen_lex_hash
|
||||
sql/gmon.out
|
||||
sql/handlerton.cc
|
||||
|
|
|
@ -476,8 +476,10 @@ static inline SYMBOL *get_hash_symbol(const char *s,\n\
|
|||
if (len == 0) {\n\
|
||||
DBUG_PRINT(\"warning\", (\"get_hash_symbol() received a request for a zero-length symbol, which is probably a mistake.\"));\
|
||||
return(NULL);\n\
|
||||
}\
|
||||
\n\
|
||||
}\n"
|
||||
);
|
||||
|
||||
printf("\
|
||||
if (function){\n\
|
||||
if (len>sql_functions_max_len) return 0;\n\
|
||||
hash_map= sql_functions_map;\n\
|
||||
|
@ -508,7 +510,10 @@ static inline SYMBOL *get_hash_symbol(const char *s,\n\
|
|||
cur_struct= uint4korr(hash_map+\n\
|
||||
(((uint16)cur_struct + cur_char - first_char)*4));\n\
|
||||
cur_str++;\n\
|
||||
}\n\
|
||||
}\n"
|
||||
);
|
||||
|
||||
printf("\
|
||||
}else{\n\
|
||||
if (len>symbols_max_len) return 0;\n\
|
||||
hash_map= symbols_map;\n\
|
||||
|
|
Loading…
Reference in a new issue