Skip to content

Commit 65e8506

Browse files
committed
Merge branch '10.3' into bb-10.4-release
2 parents 6adfce9 + faddcf3 commit 65e8506

39 files changed

+312
-78
lines changed

BUILD/SETUP.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ get_make_parallel_flag
121121

122122
# SSL library to use.--with-ssl will select our bundled yaSSL
123123
# implementation of SSL. --with-ssl=yes will first try system library
124-
# then the boundled one --with-ssl=system will use the system library.
124+
# then the bundled one --with-ssl=system will use the system library.
125125
# We use bundled by default as this is guaranteed to work with Galera
126126
SSL_LIBRARY=--with-ssl
127127

BUILD/compile-irix-mips64-mipspro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ path=`dirname $0`
5555
. "$path/autorun.sh"
5656

5757
# C options:
58-
# -apo - auto-parallize for multiprocessors (implies -mp)
58+
# -apo - auto-parallelize for multiprocessors (implies -mp)
5959
# -mp - generate multiprocessor code
6060
# These two common optimization options apparently use 'sproc' model of
6161
# threading, which is not compatible with PTHREADS: don't add them unless you

Docs/INSTALL-BINARY

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ However most documentation at www.mysql.com also applies.
4444
shell> groupadd mysql
4545
shell> useradd -g mysql mysql
4646
shell> cd /usr/local
47-
shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf -
48-
shell> ln -s full-path-to-mysql-VERSION-OS mysql
47+
shell> gunzip < /path/to/mariadb-VERSION-OS.tar.gz | tar xvf -
48+
shell> ln -s full-path-to-mariadb-VERSION-OS mysql
4949
shell> cd mysql
5050
shell> chown -R mysql .
5151
shell> chgrp -R mysql .
@@ -88,16 +88,16 @@ shell> cd /usr/local
8888

8989
4. Unpack the distribution, which creates the installation
9090
directory. Then create a symbolic link to that directory:
91-
shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf -
92-
shell> ln -s full-path-to-mysql-VERSION-OS mysql
93-
The tar command creates a directory named mysql-VERSION-OS.
91+
shell> gunzip < /path/to/mariadb-VERSION-OS.tar.gz | tar xvf -
92+
shell> ln -s full-path-to-mariadb-VERSION-OS mysql
93+
The tar command creates a directory named mariadb-VERSION-OS.
9494
The ln command makes a symbolic link to that directory. This
9595
lets you refer more easily to the installation directory as
9696
/usr/local/mysql.
9797
With GNU tar, no separate invocation of gunzip is necessary.
9898
You can replace the first line with the following alternative
9999
command to uncompress and extract the distribution:
100-
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
100+
shell> tar zxvf /path/to/mariadb-VERSION-OS.tar.gz
101101

102102
5. Change location into the installation directory:
103103
shell> cd mysql

client/echo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/*
1818
echo is a replacement for the "echo" command builtin to cmd.exe
19-
on Windows, to get a Unix eqvivalent behaviour when running commands
19+
on Windows, to get a Unix equivalent behaviour when running commands
2020
like:
2121
$> echo "hello" | mysql
2222

client/mysql.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2331,7 +2331,7 @@ static bool add_line(String &buffer, char *line, size_t line_length,
23312331
!(*in_string &&
23322332
(mysql.server_status & SERVER_STATUS_NO_BACKSLASH_ESCAPES)))
23332333
{
2334-
// Found possbile one character command like \c
2334+
// Found possible one character command like \c
23352335

23362336
/*
23372337
The null-terminating character (ASCII '\0') marks the end of user

client/mysql_plugin.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ static char *convert_path(const char *argument)
281281
282282
@param[in] path The Windows path to examine.
283283
284-
@returns string containing excaped quotes if spaces found in path
284+
@returns string containing escaped quotes if spaces found in path
285285
*/
286286
static char *add_quotes(const char *path)
287287
{

client/mysql_upgrade.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ static char upgrade_info_file[FN_REFLEN]= {0};
696696
Open or create mysql_upgrade_info file in servers data dir.
697697
698698
Take a lock to ensure there cannot be any other mysql_upgrades
699-
runninc concurrently
699+
running concurrently
700700
*/
701701

702702
const char *create_error_message=
@@ -757,7 +757,7 @@ static void open_mysql_upgrade_file()
757757
/**
758758
Place holder for versions that require a major upgrade
759759
760-
@return 0 upgrade has alredy been run on this version
760+
@return 0 upgrade has already been run on this version
761761
@return 1 upgrade has to be run
762762
763763
*/
@@ -781,7 +781,7 @@ static int faulty_server_versions(const char *version)
781781
file it's always better to report that the upgrade hasn't
782782
been performed.
783783
784-
@return 0 Upgrade has alredy been run on this version
784+
@return 0 Upgrade has already been run on this version
785785
@return > 0 Upgrade has to be run
786786
*/
787787

client/mysqladmin.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
along with this program; if not, write to the Free Software
1616
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA */
1717

18-
/* maintaince of mysql databases */
18+
/* maintenance of mysql databases */
1919

2020
#include "client_priv.h"
2121
#include <signal.h>

client/mysqlbinlog.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ enum Exit_status {
174174

175175
/**
176176
Pointer to the last read Annotate_rows_log_event. Having read an
177-
Annotate_rows event, we should not print it immediatedly because all
177+
Annotate_rows event, we should not print it immediately because all
178178
subsequent rbr events can be filtered away, and have to keep it for a while.
179179
Also because of that when reading a remote Annotate event we have to keep
180180
its binary log representation in a separately allocated buffer.

client/mysqlcheck.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ static int handle_request_for_tables(char *tables, size_t length,
914914
case DO_ANALYZE:
915915
if (view)
916916
{
917-
printf("%-50s %s\n", tables, "Can't run anaylyze on a view");
917+
printf("%-50s %s\n", tables, "Can't run analyze on a view");
918918
DBUG_RETURN(1);
919919
}
920920
DBUG_ASSERT(!view);

0 commit comments

Comments
 (0)