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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
92d00094
Commit
92d00094
authored
Mar 25, 2001
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating changelog
Docs/manual.texi: Changelog sql/gen_lex_hash.cc: Better hash values
parent
20a5872e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
Docs/manual.texi
Docs/manual.texi
+7
-0
sql/gen_lex_hash.cc
sql/gen_lex_hash.cc
+1
-1
No files found.
Docs/manual.texi
View file @
92d00094
...
...
@@ -28039,6 +28039,10 @@ slower on Linux. Note that you still can use a dynamic linked
@strong{MySQL} library. It is only the server that is critical for
performance.
@item
If you strip your @code{mysqld} binary with @code{strip libexec/mysqld},
the resulting binary can be up to 4 % faster.
@item
If you connect using TCP/IP rather than Unix sockets, the result is 7.5%
slower on the same computer. (If you are connection to @code{localhost},
...
...
@@ -42403,6 +42407,9 @@ not yet 100 % confident in this code.
Fixed that one can't use database names with @code{.}. This fixes a serious
security issue when @code{mysqld} is run as root.
@item
Fixed bug when thread creation failed (could happen when doing a LOT
of connections in a short time).
@item
Don't free the key cache on @code{FLUSH TABLES} as this will cause problems
with temporary tables.
@item
sql/gen_lex_hash.cc
View file @
92d00094
...
...
@@ -472,7 +472,7 @@ int main(int argc,char **argv)
int
error
;
MY_INIT
(
argv
[
0
]);
start_value
=
6871391L
;
best_t1
=
1779313L
;
best_t2
=
5719807L
;
best_type
=
3
;
/* mode=4987 add=5 type: 0 */
start_value
=
4997167L
;
best_t1
=
4533271L
;
best_t2
=
7512314L
;
best_type
=
4
;
if
(
get_options
(
argc
,(
char
**
)
argv
))
exit
(
1
);
...
...
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