summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
Diffstat (limited to 'Docs')
-rw-r--r--Docs/manual.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index 8f3f33a800f..27c42e74540 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -33949,7 +33949,7 @@ mysql> select * from bar;
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.
-@code{CREATE TABLE ... SELECT} will not automaticly create any indexes
+@code{CREATE TABLE ... SELECT} will not automatically 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:
@@ -41735,7 +41735,7 @@ MySQL function. This initializes some global variables that MySQL
needs. If you are using a thread safe client library, this will also
call @code{my_thread_init()} for this thread.
-This is automaticly called by @code{mysql_init()}
+This is automatically called by @code{mysql_init()}
and @code{mysql_connect()}.
@subsubheading Return Values
@@ -41752,7 +41752,7 @@ none.
This function needs to be called for each created thread to initialize
thread specific variables.
-This is automaticly called by @code{my_init()} and @code{mysql_connect()}.
+This is automatically called by @code{my_init()} and @code{mysql_connect()}.
@subsubheading Return Values
@@ -41768,7 +41768,7 @@ none.
This function needs to be called before calling @code{pthread_exit()} to
freed memory allocated by @code{my_thread_init()}.
-Note that this function is NOT invoked automaticly be the client
+Note that this function is NOT invoked automatically by the client
library!
@subsubheading Return Values
@@ -44506,7 +44506,7 @@ By default, MySQL searches are case-insensitive (although there are
some character sets that are never case insensitive, such as @code{czech}).
That means that if you search with @code{col_name LIKE 'a%'}, you will get all
column values that start with @code{A} or @code{a}. If you want to make this
-search case-sensitive, use something like @code{INDEX(col_name, "A")=0} to
+search case-sensitive, use something like @code{INSTR(col_name, "A")=1} to
check a prefix. Or use @code{STRCMP(col_name, "A") = 0} if the column value
must be exactly @code{"A"}.