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
714431e3
Commit
714431e3
authored
Apr 12, 2001
by
monty@donna.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added intern which functions to benchmarks
parent
95d908dd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
Docs/manual.texi
Docs/manual.texi
+4
-0
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+21
-0
No files found.
Docs/manual.texi
View file @
714431e3
...
@@ -28293,6 +28293,10 @@ If you connect using TCP/IP rather than Unix sockets, the result is 7.5%
...
@@ -28293,6 +28293,10 @@ 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},
slower on the same computer. (If you are connection to @code{localhost},
@strong{MySQL} will, by default, use sockets).
@strong{MySQL} will, by default, use sockets).
@item
If you connect using TCP/IP from another computer over a 100M Ethernet,
things will be 8-11 % slower.
@item
@item
If you compile with @code{--with-debug=full}, then you will loose 20 %
If you compile with @code{--with-debug=full}, then you will loose 20 %
for most queries, but some queries may take substantially longer (The
for most queries, but some queries may take substantially longer (The
mysql-test/mysql-test-run.sh
View file @
714431e3
...
@@ -20,6 +20,27 @@ TZ=GMT-3; export TZ # for UNIX_TIMESTAMP tests to work
...
@@ -20,6 +20,27 @@ TZ=GMT-3; export TZ # for UNIX_TIMESTAMP tests to work
PATH
=
/bin:/usr/bin:/usr/local/bin:/usr/bsd:/usr/X11R6/bin
PATH
=
/bin:/usr/bin:/usr/local/bin:/usr/bsd:/usr/X11R6/bin
# Standard functions
which
()
{
DIRS
=
`
echo
$PATH
|
tr
":"
" "
`
for
file
do
for
dir
in
$DIRS
do
if
test
-f
$dir
/
$file
then
echo
"
$dir
/
$file
"
continue
2
fi
done
echo
"which: no
$file
in (
$PATH
)"
exit
1
done
}
# No paths below as we can't be sure where the program is!
# No paths below as we can't be sure where the program is!
BASENAME
=
`
which
basename
|
head
-1
`
BASENAME
=
`
which
basename
|
head
-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