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
e4405fc5
Commit
e4405fc5
authored
Oct 15, 2001
by
serg@serg.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make mysql-test-run --gdb to work (as it does not wait for keypress anymore)
manual updated
parent
3dd727f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
Docs/manual.texi
Docs/manual.texi
+5
-4
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+3
-1
No files found.
Docs/manual.texi
View file @
e4405fc5
...
@@ -35185,18 +35185,16 @@ that does not have a 50% threshold.
...
@@ -35185,18 +35185,16 @@ 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}
@
c @
item Utility program @code{ft_dump} added for low-level @code{FULLTEXT}
index operations (querying/dumping/statistics).
@c
index operations (querying/dumping/statistics).
@end itemize
@end itemize
@node Fulltext TODO, , Fulltext Features to Appear in MySQL 4.0, Fulltext Search
@node Fulltext TODO, , Fulltext Features to Appear in MySQL 4.0, Fulltext Search
@subsection Full-text Search TODO
@subsection Full-text Search TODO
@itemize @bullet
@itemize @bullet
@item Make all operations with @code{FULLTEXT} index @strong{faster}.
@item Make all operations with @code{FULLTEXT} index @strong{faster}.
@item Support for braces @code{()} in boolean full-text search.
@item Phrase search, proximity operators
@item Phrase search, proximity operators
@item Boolean search can work without @code{FULLTEXT} index
@item Boolean search can work without @code{FULLTEXT} index
(yes, @strong{very} slow).
(yes, @strong{very} slow).
...
@@ -47418,6 +47416,9 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
...
@@ -47418,6 +47416,9 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
@itemize @bullet
@itemize @bullet
@item
@item
Added boolean fulltext search code.
It should be considered early alpha.
@item
Added documentation for @code{libmysqld}, the embedded MySQL server
Added documentation for @code{libmysqld}, the embedded MySQL server
library. Also added example programs (a @code{mysql} client and
library. Also added example programs (a @code{mysql} client and
@code{mysqltest} test program) which use @code{libmysqld}.
@code{mysqltest} test program) which use @code{libmysqld}.
mysql-test/mysql-test-run.sh
View file @
e4405fc5
...
@@ -673,7 +673,9 @@ start_master()
...
@@ -673,7 +673,9 @@ start_master()
"gdb -x
$GDB_MASTER_INIT
"
$MYSQLD
"gdb -x
$GDB_MASTER_INIT
"
$MYSQLD
elif
[
x
$DO_GDB
=
x1
]
elif
[
x
$DO_GDB
=
x1
]
then
then
$ECHO
"set args
$master_args
"
>
$GDB_MASTER_INIT
$ECHO
"set args
$master_args
"
>
$GDB_MASTER_INIT
$ECHO
"b mysql_parse"
>>
$GDB_MASTER_INIT
$ECHO
"r"
>>
$GDB_MASTER_INIT
manager_launch master
$XTERM
-display
$DISPLAY
\
manager_launch master
$XTERM
-display
$DISPLAY
\
-title
"Master"
-e
gdb
-x
$GDB_MASTER_INIT
$MYSQLD
-title
"Master"
-e
gdb
-x
$GDB_MASTER_INIT
$MYSQLD
else
else
...
...
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