Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
1ceea702
Commit
1ceea702
authored
Aug 24, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-maint
into maint1.mysql.com:/data/localhome/tsmith/bk/51
parents
8bf960ef
e0a928e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
.bzrignore
.bzrignore
+1
-0
sql/gen_lex_hash.cc
sql/gen_lex_hash.cc
+8
-3
No files found.
.bzrignore
View file @
1ceea702
...
...
@@ -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
...
...
sql/gen_lex_hash.cc
View file @
1ceea702
...
...
@@ -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
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment