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
669cc199
Commit
669cc199
authored
Feb 06, 2001
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lots of cleanups to manual.texi.
Docs/manual.texi: Lots of cleanups.
parent
6dcdc303
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
166 additions
and
139 deletions
+166
-139
Docs/manual.texi
Docs/manual.texi
+166
-139
No files found.
Docs/manual.texi
View file @
669cc199
...
@@ -38903,21 +38903,20 @@ different. This means that for some applications @strong{MySQL} is more
...
@@ -38903,21 +38903,20 @@ different. This means that for some applications @strong{MySQL} is more
suitable and for others @code{PostgreSQL} is more suitable. When
suitable and for others @code{PostgreSQL} is more suitable. When
choosing which database to use, you should first check if the database's
choosing which database to use, you should first check if the database's
feature set is good enough to satisfy your application. If you need
feature set is good enough to satisfy your application. If you need
speed
then
@strong{MySQL} is probably your best choice. If you need some
speed
,
@strong{MySQL} is probably your best choice. If you need some
of the extra features that @code{PostgreSQL} can offer, you should use
of the extra features that @code{PostgreSQL} can offer, you should use
@code{PostgreSQL}.
@code{PostgreSQL}.
@code{PostgreSQL} has some more advanced features like user-defined
@code{PostgreSQL} has some more advanced features like user-defined
types, triggers, rules, and some transaction support (currently it
types, triggers, rules, and some transaction support (currently it
has about the same symantics as @strong{MySQL}'s transactions in that the
has about the same symantics as @strong{MySQL}'s transactions in that the
transaction is not 100% atomic). However, PostgreSQL lacks
transaction is not 100% atomic). However, PostgreSQL lacks many of the
many of the standard types and functions from ANSI SQL and ODBC. See the
standard types and functions from ANSI SQL and ODBC. See the @code{crash-me}
@uref{http://www.mysql.com/information/crash-me.php, @code{crash-me} Web page}
Web page (@uref{http://www.mysql.com/information/crash-me.php}) for a complete
for a complete list of limits and which types and functions are supported
list of limits and which types and functions are supported or unsupported.
or unsupported.
Normally, @code{PostgreSQL} is a magnitude slower than @strong{MySQL}.
Normally, @code{PostgreSQL} is a magnitude slower than
@xref{Benchmarks}. This is due largely to the fact that they have only
@strong{MySQL}. @xref{Benchmarks}. This is due largely to the fact that they have only
transaction-safe tables and that their transactions system is not as
transaction-safe tables and that their transactions system is not as
sophisticated as Berkeley DB's. In @strong{MySQL} you can decide per
sophisticated as Berkeley DB's. In @strong{MySQL} you can decide per
table if you want the table to be fast or take the speed penalty of
table if you want the table to be fast or take the speed penalty of
...
@@ -38951,9 +38950,10 @@ This chapter describes a lot of things that you need to know when
...
@@ -38951,9 +38950,10 @@ This chapter describes a lot of things that you need to know when
working on the @strong{MySQL} code. If you plan to contribute to MySQL
working on the @strong{MySQL} code. If you plan to contribute to MySQL
development, want to have access to the bleeding-edge in-between
development, want to have access to the bleeding-edge in-between
versions code, or just want to keep track of development, follow the
versions code, or just want to keep track of development, follow the
instructions in @xref{Installing source tree}. . If you are intersted in MySQL
instructions in @xref{Installing source tree}. If you are interested in MySQL
internals you should also subscribe to internals@@lists.mysql.com - this is
internals, you should also subscribe to @email{internals@@lists.mysql.com}.
a relatively low traffic list, in comparison with mysql@@lists.mysql.com .
This is a relatively low traffic list, in comparison with
@email{mysql@@lists.mysql.com}.
@menu
@menu
* MySQL threads:: MySQL threads
* MySQL threads:: MySQL threads
...
@@ -38967,38 +38967,46 @@ a relatively low traffic list, in comparison with mysql@@lists.mysql.com .
...
@@ -38967,38 +38967,46 @@ a relatively low traffic list, in comparison with mysql@@lists.mysql.com .
The @strong{MySQL} server creates the following threads:
The @strong{MySQL} server creates the following threads:
@itemize @bullet
@itemize @bullet
@item
@item
The TCP/IP connection thread handles all connect requests and
The TCP/IP connection thread handles all connect
ion
requests and
creates a new dedicated thread to handle the authentication and
creates a new dedicated thread to handle the authentication and
and SQL query processing for the connection.
and SQL query processing for each connection.
@item
@item
On NT there is a named pipe handler thread that does the same work as
On
Windows
NT there is a named pipe handler thread that does the same work as
the TCP/IP connection thread on named pipe connect requests.
the TCP/IP connection thread on named pipe connect requests.
@item
@item
The signal thread handles all signals. This thread also normally handles
The signal thread handles all signals. This thread also normally handles
alarms and calls @code{process_alarm()} to force timeouts on connections
alarms and calls @code{process_alarm()} to force timeouts on connections
that have been idle too long.
that have been idle too long.
@item
@item
If
compiled with @code{-DUSE_ALARM_THREAD}, a dedicated thread that
If
@code{mysqld} is compiled with @code{-DUSE_ALARM_THREAD}, a dedicated
handles alarms is created.
This is only used on some systems where
thread that handles alarms is created.
This is only used on some systems where
there are
some
problems with @code{sigwait()} or if one wants to use the
there are problems with @code{sigwait()} or if one wants to use the
@code{thr_alarm()} code in ones application without a dedicated signal
@code{thr_alarm()} code in ones application without a dedicated signal
handling thread.
handling thread.
@item
@item
If one uses the @code{--flush_time=#} option, a dedicated thread is created
If one uses the @code{--flush_time=#} option, a dedicated thread is created
to flush all tables at the given interval.
to flush all tables at the given interval.
@item
@item
Every connection has its own thread.
Every connection has its own thread.
@item
@item
Every different table on which one uses @code{INSERT DELAYED} gets its
Every different table on which one uses @code{INSERT DELAYED} gets its
own thread.
own thread.
@item
@item
If you use @code{--master-host}, slave replication thread will be
If you use @code{--master-host},
a
slave replication thread will be
started to read and apply updates from the master.
started to read and apply updates from the master.
@end itemize
@end itemize
@code{mysqladmin processlist} only shows the connection
and @code{INSERT
@code{mysqladmin processlist} only shows the connection
, @code{INSERT DELAYED},
DELAYED}
threads.
and replication
threads.
@cindex searching, full-text
@cindex searching, full-text
@cindex full-text search
@cindex full-text search
...
@@ -39007,13 +39015,13 @@ DELAYED} threads.
...
@@ -39007,13 +39015,13 @@ DELAYED} threads.
@section MySQL Full-text Search
@section MySQL Full-text Search
Since Version 3.23.23, @strong{MySQL} has support for full-text indexing
Since Version 3.23.23, @strong{MySQL} has support for full-text indexing
and searching.
Full-text index in @strong{MySQL} is an
and searching.
Full-text indexes in @strong{MySQL} are an index of type
index of type @code{FULLTEXT}. @code{FULLTEXT} indexes can be created from
@code{FULLTEXT}. @code{FULLTEXT} indexes can be created from @code{VARCHAR}
@code{VARCHAR} and @code{TEXT} columns at @code{CREATE TABLE} time or added
and @code{TEXT} columns at @code{CREATE TABLE} time or added later with
later with @code{ALTER TABLE} or @code{CREATE INDEX}. For big datasets,
@code{ALTER TABLE} or @code{CREATE INDEX}. For large datasets, adding
adding @code{FULLTEXT} index with @code{ALTER TABLE}
@code{FULLTEXT} index with @code{ALTER TABLE} (or @code{CREATE INDEX}) would
(or @code{CREATE INDEX}) would be much faster, than inserting rows into
be much faster than inserting rows into the empty table with a @code{FULLTEXT}
the empty table with @code{FULLTEXT}
index.
index.
Full-text search is performed with the @code{MATCH} function.
Full-text search is performed with the @code{MATCH} function.
...
@@ -39052,21 +39060,20 @@ mysql> SELECT *,MATCH a,b AGAINST ('collections support') as x FROM t;
...
@@ -39052,21 +39060,20 @@ mysql> SELECT *,MATCH a,b AGAINST ('collections support') as x FROM t;
5 rows in set (0.00 sec)
5 rows in set (0.00 sec)
@end example
@end example
The function @code{MATCH} matches a natural language query
The function @code{MATCH} matches a natural language query @code{AGAINST}
@code{AGAINST} a text collection (which is simply the columns that are
a text collection (which is simply the columns that are covered by a
covered by a @strong{FULLTEXT} index). For every row in a table it
@strong{FULLTEXT} index). For every row in a table it returns relevance -
returns relevance - a similarity measure between the text in that row
a similarity measure between the text in that row (in the columns that are
(in the columns that are part of the collection) and the query. When it
part of the collection) and the query. When it is used in a @code{WHERE}
is used in a @code{WHERE} clause (see example above) the rows returned
clause (see example above) the rows returned are automatically sorted with
are automatically sorted with relevance decreasing. Relevance is a
relevance decreasing. Relevance is a non-negative floating-point number.
non-negative floating-point number. Zero relevance means no similarity.
Zero relevance means no similarity. Relevance is computed based on the
Relevance is computed based on the number of words in the row and the
number of words in the row, the number of unique words in that row, the
number of unique words in that row, the total number of words in the
total number of words in the collection, and the number of documents (rows)
collection, the number of documents (rows) that contain a particular
that contain a particular word.
word, etc.
MySQL uses a very simple parser to split text into words. A ``word'' is
MySQL uses a very simple parser to split text into words. A "word" is
any sequence of letters, numbers, @samp{'}, and @samp{_}. Any ``word''
any sequence of letters, numbers, @code{'}, and @code{_}. Any "word"
that is present in the stopword list or just too short (3 characters
that is present in the stopword list or just too short (3 characters
or less) is ignored.
or less) is ignored.
...
@@ -39075,25 +39082,25 @@ according to its significance in the query or collection. This way, a
...
@@ -39075,25 +39082,25 @@ according to its significance in the query or collection. This way, a
word that is present in many documents will have lower weight (and may
word that is present in many documents will have lower weight (and may
even have a zero weight), because it has lower semantic value in this
even have a zero weight), because it has lower semantic value in this
particular collection. Otherwise, if the word is rare, it will receive a
particular collection. Otherwise, if the word is rare, it will receive a
higher weight.
W
eights of the words are then combined to compute the
higher weight.
The w
eights of the words are then combined to compute the
relevance.
relevance
of the row
.
Such a technique works best with
big
collections (in fact, it was
Such a technique works best with
large
collections (in fact, it was
carefully tuned
up this way).
For very small tables, word distribution
carefully tuned
this way).
For very small tables, word distribution
does not reflect adequately their semantical value, and this model
does not reflect adequately their semantical value, and this model
may sometimes produce bizarre results.
may sometimes produce bizarre results.
For example, search for the word "search" will produce no results in the
For example, search for the word "search" will produce no results in the
above example. Word "search" is present in more than half of rows, and
above example. Word "search" is present in more than half of rows, and
as
, such, is effectively treated as
stopword (that is, with semantical value
as
such, is effectively treated as a
stopword (that is, with semantical value
zero).
It is, really, the desired behavior -
natural language query
zero).
It is, really, the desired behavior - a
natural language query
should not return every
second
row in 1GB table.
should not return every
other
row in 1GB table.
The word that select 50% of rows has low abilit
y to locate relevant
A word that matches half of rows in a table is less likel
y to locate relevant
documents
(and will find plenty of unrelevant documents also - we all
documents
. In fact, it will most likely find plenty of irrelevant documents.
know this happen too often when we are trying to find something in Internet
We all know this happens far too often when we are trying to find something on
with search engine), and, as such, has low semantical value in @strong{this
the Internet with a search engine. It is with this reasoning that such rows
particular dataset}.
have been assigned a low semantical value in @strong{a
particular dataset}.
@menu
@menu
* Fulltext Fine-tuning::
* Fulltext Fine-tuning::
...
@@ -39104,14 +39111,14 @@ particular dataset}.
...
@@ -39104,14 +39111,14 @@ particular dataset}.
@node Fulltext Fine-tuning, Fulltext features to appear in MySQL 4.0, MySQL full-text search, MySQL full-text search
@node Fulltext Fine-tuning, Fulltext features to appear in MySQL 4.0, MySQL full-text search, MySQL full-text search
@subsection Fine-tuning MySQL Full-text Search
@subsection Fine-tuning MySQL Full-text Search
Unfortunately, full-text search has no user-tunable parameters yet
Unfortunately, full-text search has no user-tunable parameters yet
,
(but adding some is very high in the TODO). But if one has @strong{MySQL}
although adding some is very high on the TODO. However, if you have a
source distribution (@xref{Installing source}.) he can somewhat alter
@strong{MySQL} source distribution (@xref{Installing source}.), you can
full-text search default behaviou
r.
somewhat alter the full-text search behavio
r.
But note, that full-text search was carefully tuned up for the best
Note that full-text search was carefully tuned for the best searching
search effectivity. Modifying default behaviour will, most probably
,
effectiveness. Modifying the default behavior will, in most cases
,
make search results only worse. Do not play with @strong{MySQL} sources,
only make the search results worse. Do not alter the @strong{MySQL} sources
unless you know what you are doing!
unless you know what you are doing!
@itemize
@itemize
...
@@ -39122,25 +39129,26 @@ Minimal length of word to be indexed is defined in
...
@@ -39122,25 +39129,26 @@ Minimal length of word to be indexed is defined in
@example
@example
#define MIN_WORD_LEN 4
#define MIN_WORD_LEN 4
@end example
@end example
Change it to the value
, you prefer, recompile @strong{MySQL}
and rebuild
Change it to the value
you prefer, recompile @strong{MySQL},
and rebuild
your @code{FULLTEXT} indexes.
your @code{FULLTEXT} indexes.
@item
@item
S
topword list is defined in @code{myisam/ft_static.c}
The s
topword list is defined in @code{myisam/ft_static.c}
Modify it to your taste, recompile @strong{MySQL} and rebuild
Modify it to your taste, recompile @strong{MySQL} and rebuild
your @code{FULLTEXT} indexes.
your @code{FULLTEXT} indexes.
@item
@item
50% threshold is caused by weighting scheme chosen. To disable it, change
The 50% threshold is caused by the particular weighting scheme chosen. To
disable it, change the following line in @code{myisam/ftdefs.h}:
@example
@example
#define GWS_IN_USE GWS_PROB
#define GWS_IN_USE GWS_PROB
@end example
@end example
line in @code{myisam/ftdefs.h}
to
to
@example
@example
#define GWS_IN_USE GWS_FREQ
#define GWS_IN_USE GWS_FREQ
@end example
@end example
and recompile @strong{MySQL}.
and recompile @strong{MySQL}.
There is no need to rebuild the indexes
though
.
There is no need to rebuild the indexes
in this case
.
@end itemize
@end itemize
...
@@ -39157,24 +39165,28 @@ implemented in the 4.0 tree. It explains
...
@@ -39157,24 +39165,28 @@ implemented in the 4.0 tree. It explains
@code{OPTIMIZE TABLE} with @code{FULLTEXT} indexes are now
@code{OPTIMIZE TABLE} with @code{FULLTEXT} indexes are now
up to 100 times faster.
up to 100 times faster.
@item @code{MATCH ... AGAINST} now supports @strong{boolean operators}.
@item @code{MATCH ... AGAINST} now supports the following
They are the following:@itemize @bullet
@strong{boolean operators}:
@itemize @bullet
@item @code{+}word means the that word @strong{must} be present in every
@item @code{+}word means the that word @strong{must} be present in every
row returned.
row returned.
@item @code{-}word means the that word @strong{must not} be present in every
@item @code{-}word means the that word @strong{must not} be present in every
row returned.
row returned.
@item @code{<} and @code{>} can be used to decrease and increase word
@item @code{<} and @code{>} can be used to decrease and increase word
weight in the query.
weight in the query.
@item @code{~} can be used to assign a @strong{negative} weight to noise-word.
@item @code{~} can be used to assign a @strong{negative} weight to a noise
word.
@item @code{*} is a truncation operator.
@item @code{*} is a truncation operator.
@end itemize
@end itemize
Boolean search utilizes more simplistic way of calculating the relevance,
that does not has 50% threshold.
Boolean search utilizes a more simplistic way of calculating the relevance,
that does not have a 50% threshold.
@item Searches are now up to 2 times faster due to optimized search algorithm.
@item Searches are now up to 2 times faster due to optimized search algorithm.
@item Utility program @code{ft_dump} added for low-level @code{FULLTEXT}
@item Utility program @code{ft_dump} added for low-level @code{FULLTEXT}
index operations (quering/dumping/statistics).
index operations (quer
y
ing/dumping/statistics).
@end itemize
@end itemize
...
@@ -39190,104 +39202,116 @@ the user wants to treat as words, examples are "C++", "AS/400", "TCP/IP", etc.
...
@@ -39190,104 +39202,116 @@ the user wants to treat as words, examples are "C++", "AS/400", "TCP/IP", etc.
@item Support for multi-byte charsets.
@item Support for multi-byte charsets.
@item Make stopword list to depend of the language of the data.
@item Make stopword list to depend of the language of the data.
@item Stemming (dependent of the language of the data, of course).
@item Stemming (dependent of the language of the data, of course).
@item Generic user-suppl
i
able UDF (?) preparser.
@item Generic user-suppl
y
able UDF (?) preparser.
@item Make the model more flexible (by adding some adjustable
@item Make the model more flexible (by adding some adjustable
parameters to @code{FULLTEXT} in @code{CREATE/ALTER TABLE}).
parameters to @code{FULLTEXT} in @code{CREATE/ALTER TABLE}).
@end itemize
@end itemize
@node MySQL test suite, , MySQL full-text search, MySQL internals
@node MySQL test suite, , MySQL full-text search, MySQL internals
@cindex mysqltest, MySQL Test Suite
@cindex testing mysqld, mysqltest
@section MySQL Test Suite
@section MySQL Test Suite
Until recently, our main full-coverage test suite was based on
Until recently, our main full-coverage test suite was based on
proprietary
proprietary customer data and for that reason was not publically available. The
customer data and for that reason has not been publicly available. The only
only publically available part of our testing process consisted of
publicly available part of our testing process consisted of the @code{crash-me}
@code{crash-me} test, the Perl DBI/DBD benchmark found in @code{sql-bench}
test, a Perl DBI/DBD benchmark found in the @code{sql-bench} directory, and
directory, and miscalaneous tests combined in @code{tests} directory. The lack
miscellaneous tests located in @code{tests} directory. The lack of a
of a standardazied publically available test suite made it hard for our users
standardized publicly available test suite has made it difficult for our users,
as well
as developers to do regression tests on
MySQL code. To address this
as well
developers, to do regression tests on the
MySQL code. To address this
problem, we have created a new test system that is included in the source
problem, we have created a new test system that is included in the source
and binary distributions starting in
v
ersion 3.23.29.
and binary distributions starting in
V
ersion 3.23.29.
The test system consist of a test language interpreter
@code{mysqltest}
,
The test system consist of a test language interpreter
(@code{mysqltest})
,
@code{mysql-test-run} - a shell script to run all tests
, the actual test cases
a shell script to run all tests(@code{mysql-test-run})
, the actual test cases
written in a special test language, and their expected results. To run the
written in a special test language, and their expected results. To run the
test suite on your system after a build, type @code{mysql-test/mysql-test-run}
test suite on your system after a build, type @code{mysql-test/mysql-test-run}
from the source root. If you have installed a binary distribution, @code{cd}
from the source root. If you have installed a binary distribution, @code{cd}
to the install root (
eg. @code{/usr/local/mysql}
), and do
to the install root (
eg. @code{/usr/local/mysql}
), and do
@code{scripts/mysql-test-run}. All tests should succeed. If they do not,
@code{scripts/mysql-test-run}. All tests should succeed. If they do not,
use @code{mysqlbug}
and
send a bug report to @email{bugs@@lists.mysql.com}.
use @code{mysqlbug}
to
send a bug report to @email{bugs@@lists.mysql.com}.
Make sure to include the output of @code{mysql-test-run},
contents of all
Make sure to include the output of @code{mysql-test-run},
as well as
@code{.reject} files in @code{mysql-test/r} directory.
contents of all
@code{.reject} files in @code{mysql-test/r} directory.
If you have a copy of @code{mysqld} running on the machine where you want to
If you have a copy of @code{mysqld} running on the machine where you want to
run the test suite you do not have to stop it, as long as it is not using
run the test suite you do not have to stop it, as long as it is not using
ports @code{9306} and @code{9307}. If one of those ports is taken, you should
ports @code{9306} and @code{9307}. If one of those ports is taken, you should
edit @code{mysql-test-run} and change the values of the master and/or slave
edit @code{mysql-test-run} and change the values of the master and/or slave
port to
something not used.
port to
one that is available.
The current set of test cases is far from comprehensive, as we have not yet
The current set of test cases is far from comprehensive, as we have not yet
converted all of our private
suite tests to the new format. However,
converted all of our private
tests to the new format. However, it should
it should already catch most obvious bugs in the SQL processing code
,
already catch most obvious bugs in the SQL processing code, OS/library issues
,
OS/library issues, and is quite thorough in testing replication. Our eventual
and is quite thorough in testing replication. Our eventual goal is to have
goal is to have the tests cover 100% of the code. We welcome contributions to
the tests cover 100% of the code. We welcome contributions to our test suite.
our test suite. You may especially want to contribute tests that examine the
You may especially want to contribute tests that examine the functionality
functionality critical to your system - this will ensure that all
critical to your system, as this will ensure that all future @strong{MySQL}
@strong{MySQL}
releases will work well with your applications.
releases will work well with your applications.
You can use @code{mysqltest} language to write your own test cases.
You can use
the
@code{mysqltest} language to write your own test cases.
Unfortunately, we have not yet written full documentation for it - we plan to
Unfortunately, we have not yet written full documentation for it - we plan to
do this shortly.
However, you can look at our current test cases and
do this shortly.
You can, however, look at our current test cases and use
use them as an example. Also t
he following points should help you get started:
them as an example. T
he following points should help you get started:
@itemize
@itemize
@item
@item
The tests are located in @code{mysql-test/t/*.test}
The tests are located in @code{mysql-test/t/*.test}
@item
@item
You can run one individual test case with
You can run one individual test case with
@code{mysql-test/mysql-test-run test_name}
@code{mysql-test/mysql-test-run test_name}
removing @code{.test} extension from the file name
removing @code{.test} extension from the file name
@item
@item
A test case consists of @code{;} terminated statements and is similar to the
A test case consists of @code{;} terminated statements and is similar to the
input of @code{mysql} command line client. A statement by default is a query
input of @code{mysql} command line client. A statement by default is a query
to be sent to @strong{MySQL} server, unless it is recognized as internal
to be sent to @strong{MySQL} server, unless it is recognized as internal
command ( eg. @code{sleep} ).
command ( eg. @code{sleep} ).
@item
@item
All queries that produce results, eg @code{SELECT}, @code{SHOW},
All queries that produce results, e.g. @code{SELECT}, @code{SHOW},
@code{EXPLAIN}, etc, must be preceded with @code{@@/path/to/result/file}. The
@code{EXPLAIN}, etc., must be preceded with @code{@@/path/to/result/file}. The
file must contain expected results. An easy way to generate the result file
file must contain the expected results. An easy way to generate the result
is to run @code{mysqltest -r < t/test-case-name.test} from @code{mysql-test}
file is to run @code{mysqltest -r < t/test-case-name.test} from
directory, and then edit the generated result files, if needed, to adjust
@code{mysql-test} directory, and then edit the generated result files, if
them to the expected output. In that case, be very careful about not adding or
needed, to adjust them to the expected output. In that case, be very careful
deleting any invisible characters - make sure to only change the text and/or
about not adding or deleting any invisible characters - make sure to only
delete lines. If you have to insert a line, make sure the fields are separated
change the text and/or delete lines. If you have to insert a line, make sure
with a hard tab, and there is a hard tab at the end. You may want to use
the fields are separated with a hard tab, and there is a hard tab at the end.
@code{od -c} to make sure your text editor has not messed anything up during
You may want to use @code{od -c} to make sure your text editor has not messed
edit. We, of course, hope that you will never have to edit the output of
anything up during edit. We, of course, hope that you will never have to edit
@code{mysqltest -r} as you only have to do it when you find a bug.
the output of @code{mysqltest -r} as you only have to do it when you find a
bug.
@item
@item
To be consistent with our setup, you should put your result files in
To be consistent with our setup, you should put your result files in
@code{mysql-test/r} directory and name them @code{test_name.result}. If the
@code{mysql-test/r} directory and name them @code{test_name.result}. If the
test produces more than one result, you should use @code{test_name.a.result},
test produces more than one result, you should use @code{test_name.a.result},
@code{test_name.b.result}, etc
@code{test_name.b.result}, etc.
@item
@item
Failed test results are put in a file with the same base name as the
Failed test results are put in a file with the same base name as the
result file with the @code{.reject} extens
tion.
If your test case is
result file with the @code{.reject} extens
ion.
If your test case is
failing, you should do a diff on the two files. If you cannot see how
failing, you should do a diff on the two files. If you cannot see how
they are different, examine both with @code{od -c} and also check their
they are different, examine both with @code{od -c} and also check their
lengths.
lengths.
@item
@item
You can prefix a query with @code{!} if the test can continue after that query
You can prefix a query with @code{!} if the test can continue after that query
returns an error.
returns an error.
@item
@item
If you are writing a replication test case, you should on the first line put
If you are writing a replication test case, you should on the first line of
@code{source include/master-slave.inc;} at the start of the test file. To
the test file, put @code{source include/master-slave.inc;}. To switch between
switch between master and slave, use @code{connection master;}/
master and slave, use @code{connection master;} and @code{connection slave;}.
@code{connection slave;}. If you need to do something on an alternate
If you need to do something on an alternate connection, you can do
connection, you can do @code{connection master1;} for the master, and
@code{connection master1;} for the master, and @code{connection slave1;} for
@code{connection slave1;} on the slave
the slave.
@item
@item
If you need to do something in a loop, you can use someting like this:
If you need to do something in a loop, you can use somet
h
ing like this:
@example
@example
let $1=1000;
let $1=1000;
while ($1)
while ($1)
...
@@ -39296,18 +39320,21 @@ while ($1)
...
@@ -39296,18 +39320,21 @@ while ($1)
dec $1;
dec $1;
@}
@}
@end example
@end example
@item
@item
To sleep between queries, use @code{sleep} command. It supports fractions of
To sleep between queries, use the @code{sleep} command. It supports fractions
a second, so you can do @code{sleep 1.3;}, for example, to sleep 1.3 seconds.
of a second, so you can do @code{sleep 1.3;}, for example, to sleep 1.3
seconds.
@item
@item
To run the slave with additional options for your test case, put them
To run the slave with additional options for your test case, put them
in the command-line format in @code{mysql-test/t/test_name-slave.opt}. For
in the command-line format in @code{mysql-test/t/test_name-slave.opt}. For
the master, put them in @code{mysql-test/t/test_name-master.opt}.
the master, put them in @code{mysql-test/t/test_name-master.opt}.
@item
@item
If you have a question about the test suite, or have a test case to
If you have a question about the test suite, or have a test case to contribute,
contribute, e-mail to
e-mail to @email{internals@@lists.mysql.com}. As the list does not accept
@email{internals@@lists.mysql.com}. As the list does not accept attachemnts,
attachemnts, you should ftp all the relevant files to:
you should ftp all the relevant files to
@url{ftp://support.mysql.com/pub/mysql/Incoming}
@url{ftp://support.mysql.com/pub/mysql/Incoming}
@end itemize
@end itemize
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