Skip to content
Permalink
Browse files
Merge 10.4 into 10.5
  • Loading branch information
dr-m committed Dec 16, 2019
2 parents 745fd4b + 8fa759a commit 28c89b7
Show file tree
Hide file tree
Showing 376 changed files with 6,941 additions and 5,377 deletions.
@@ -9,6 +9,7 @@
*.ninja
.ninja_*
.gdb_history
.vs/
errmsg.sys
typescript
_CPack_Packages
@@ -138,6 +139,10 @@ scripts/maria_add_gis_sp.sql
scripts/maria_add_gis_sp_bootstrap.sql
scripts/galera_new_cluster
scripts/galera_recovery
scripts/mysql_convert_table_format.pl
scripts/mysqld_multi.pl
scripts/mysqldumpslow.pl
scripts/mysqlhotcopy.pl
sql-bench/bench-count-distinct
sql-bench/bench-init.pl
sql-bench/compare-results
@@ -162,6 +167,30 @@ sql-bench/test-select
sql-bench/test-table-elimination
sql-bench/test-transactions
sql-bench/test-wisconsin
sql-bench/bench-count-distinct.pl
sql-bench/compare-results.pl
sql-bench/copy-db.pl
sql-bench/crash-me.pl
sql-bench/graph-compare-results.pl
sql-bench/innotest1.pl
sql-bench/innotest1a.pl
sql-bench/innotest1b.pl
sql-bench/innotest2.pl
sql-bench/innotest2a.pl
sql-bench/innotest2b.pl
sql-bench/run-all-tests.pl
sql-bench/server-cfg.pl
sql-bench/test-ATIS.pl
sql-bench/test-alter-table.pl
sql-bench/test-big-tables.pl
sql-bench/test-connect.pl
sql-bench/test-create.pl
sql-bench/test-insert.pl
sql-bench/test-select.pl
sql-bench/test-table-elimination.pl
sql-bench/test-transactions.pl
sql-bench/test-wisconsin.pl
sql/make_mysqld_lib.cmake
sql/lex_token.h
sql/gen_lex_token
sql/gen_lex_hash
@@ -592,3 +621,6 @@ sql/mariadb-tzinfo-to-sql
sql/mariadbd
storage/rocksdb/mariadb-ldb
tests/mariadb-client-test
versioninfo_dll.rc
versioninfo_exe.rc
win/packaging/ca/symlinks.cc
@@ -3207,7 +3207,7 @@ static int
com_go(String *buffer,char *line __attribute__((unused)))
{
char buff[200]; /* about 110 chars used so far */
char time_buff[53+3+1]; /* time max + space&parens + NUL */
char time_buff[53+3+1]; /* time max + space & parens + NUL */
MYSQL_RES *result;
ulonglong timer;
ulong warnings= 0;
@@ -3227,7 +3227,7 @@ com_go(String *buffer,char *line __attribute__((unused)))

if (buffer->is_empty())
{
if (status.batch) // Ignore empty quries
if (status.batch) // Ignore empty queries.
return 0;
return put_info("No query specified\n",INFO_ERROR);

@@ -3292,7 +3292,7 @@ com_go(String *buffer,char *line __attribute__((unused)))
else
time_buff[0]= '\0';

/* Every branch must truncate buff . */
/* Every branch must truncate buff. */
if (result)
{
if (!mysql_num_rows(result) && ! quick && !column_types_flag)
@@ -4587,7 +4587,7 @@ static int dump_databases(char **db_names)


/*
View Specific database initalization.
View Specific database initialization.
SYNOPSIS
init_dumping_views
@@ -4604,7 +4604,7 @@ int init_dumping_views(char *qdatabase __attribute__((unused)))


/*
Table Specific database initalization.
Table Specific database initialization.
SYNOPSIS
init_dumping_tables

0 comments on commit 28c89b7

Please sign in to comment.