Typo fixup (from Colin Faber).

parent d9b19fb3
...@@ -462,3 +462,4 @@ Docs/mysql.xml ...@@ -462,3 +462,4 @@ Docs/mysql.xml
mysql-test/r/rpl000001.eval mysql-test/r/rpl000001.eval
Docs/safe-mysql.xml Docs/safe-mysql.xml
mysys/test_vsnprintf mysys/test_vsnprintf
Docs/manual.de.log
...@@ -35950,8 +35950,8 @@ mysql> INSERT INTO articles VALUES ...@@ -35950,8 +35950,8 @@ mysql> INSERT INTO articles VALUES
-> (0,'1001 MySQL Trick','1. Never run mysqld as root. 2. ...'), -> (0,'1001 MySQL Trick','1. Never run mysqld as root. 2. ...'),
-> (0,'MySQL vs. YourSQL', 'In the following database comparison ...'), -> (0,'MySQL vs. YourSQL', 'In the following database comparison ...'),
-> (0,'MySQL Security', 'When configured properly, MySQL ...'); -> (0,'MySQL Security', 'When configured properly, MySQL ...');
Query OK, 5 rows affected (0.00 sec) Query OK, 6 rows affected (0.00 sec)
Records: 5 Duplicates: 0 Warnings: 0 Records: 6 Duplicates: 0 Warnings: 0
mysql> SELECT * FROM articles mysql> SELECT * FROM articles
-> WHERE MATCH (title,body) AGAINST ('database'); -> WHERE MATCH (title,body) AGAINST ('database');
...@@ -35992,7 +35992,7 @@ mysql> SELECT id,MATCH title,body AGAINST ('Tutorial') FROM articles; ...@@ -35992,7 +35992,7 @@ mysql> SELECT id,MATCH title,body AGAINST ('Tutorial') FROM articles;
| 5 | 0 | | 5 | 0 |
| 6 | 0 | | 6 | 0 |
+----+-----------------------------------------+ +----+-----------------------------------------+
5 rows in set (0.00 sec) 6 rows in set (0.00 sec)
@end example @end example
This example shows how to retrieve the relevances. As neither @code{WHERE} This example shows how to retrieve the relevances. As neither @code{WHERE}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment