mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
Fixed bad manual merge
This commit is contained in:
parent
851afaa272
commit
596d69b5ce
1 changed files with 22 additions and 2 deletions
|
@ -31763,6 +31763,15 @@ mysql> select * from bar;
|
||||||
For each row in table @code{foo}, a row is inserted in @code{bar} with
|
For each row in table @code{foo}, a row is inserted in @code{bar} with
|
||||||
the values from @code{foo} and default values for the new columns.
|
the values from @code{foo} and default values for the new columns.
|
||||||
|
|
||||||
|
@code{CREATE TABLE ... SELECT} will not automaticly create any indexes
|
||||||
|
for you. This is done intentionally to make the command as flexible as
|
||||||
|
possible. If you want to have indexes in the created table, you should
|
||||||
|
specify these before the @code{SELECT} statement:
|
||||||
|
|
||||||
|
@example
|
||||||
|
mysql> create table bar (unique (n)) select n from foo;
|
||||||
|
@end example
|
||||||
|
|
||||||
If any errors occur while copying the data to the table, it will
|
If any errors occur while copying the data to the table, it will
|
||||||
automatically be deleted.
|
automatically be deleted.
|
||||||
|
|
||||||
|
@ -36670,12 +36679,23 @@ the Internet with a search engine. It is with this reasoning that such rows
|
||||||
have been assigned a low semantical value in @strong{this particular dataset}.
|
have been assigned a low semantical value in @strong{this particular dataset}.
|
||||||
|
|
||||||
@menu
|
@menu
|
||||||
|
* Fulltext restrictions::
|
||||||
* Fulltext Fine-tuning::
|
* Fulltext Fine-tuning::
|
||||||
* Fulltext Features to Appear in MySQL 4.0::
|
* Fulltext Features to Appear in MySQL 4.0::
|
||||||
* Fulltext TODO::
|
* Fulltext TODO::
|
||||||
@end menu
|
@end menu
|
||||||
|
|
||||||
@node Fulltext Fine-tuning, Fulltext Features to Appear in MySQL 4.0, Fulltext Search, Fulltext Search
|
@node Fulltext restrictions, Fulltext Fine-tuning, Fulltext Search, Fulltext Search
|
||||||
|
@section Fulltext restrictions
|
||||||
|
@itemize @bullet
|
||||||
|
@item
|
||||||
|
All parameters to the @code{MATCH} function must be columns from the
|
||||||
|
same table that is part of the same fulltext index.
|
||||||
|
@item
|
||||||
|
The argument to @code{AGAINST} must be a constant string.
|
||||||
|
@end itemize
|
||||||
|
|
||||||
|
@node Fulltext Fine-tuning, Fulltext Features to Appear in MySQL 4.0, Fulltext restrictions, Fulltext Search
|
||||||
@section Fine-tuning MySQL Full-text Search
|
@section 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,
|
||||||
|
@ -36732,7 +36752,7 @@ 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 the following
|
@item @code{MATCH ... AGAINST} is going to supports the following
|
||||||
@strong{boolean operators}:
|
@strong{boolean operators}:
|
||||||
|
|
||||||
@itemize @bullet
|
@itemize @bullet
|
||||||
|
|
Loading…
Add table
Reference in a new issue