Merge 10.2 into 10.3

This commit is contained in:
Marko Mäkelä 2019-06-11 13:00:18 +03:00
commit b42dbdbccd
46 changed files with 612 additions and 128 deletions

View file

@ -1,5 +1,3 @@
#!/bin/awk
/Query_time:/ {
results["Rows_examined:"] = "uninit";
results["RocksDB_key_skipped:"] = "uninit";

View file

@ -1,2 +1,4 @@
#!/bin/bash
src_data_dir="${MYSQLTEST_VARDIR}/mysqld.1/data/"
python -c "import socket as s; sock = s.socket(s.AF_UNIX); sock.bind('${src_data_dir}/slocket')"

View file

@ -1,3 +1,5 @@
#!/bin/bash
set -e
COPY_LOG=$1

View file

@ -1,3 +1,5 @@
#!/bin/bash
set -e
# Insert 100 batches of 100 records each to a table with following schema:

View file

@ -1,3 +1,5 @@
#!/bin/bash
set -e
# Initially loads a chunk of data.

View file

@ -1,3 +1,5 @@
#!/bin/bash
set -e
# Insert 10 batches of 10 records each to a table with following schema:

View file

@ -1,2 +1,4 @@
#!/bin/bash
src_data_dir="${MYSQLTEST_VARDIR}/mysqld.1/data/"
rm "${src_data_dir}/slocket"

View file

@ -1,3 +1,5 @@
#!/bin/bash
set -e
binlog_line=($(grep -o "Last binlog file position [0-9]*, file name .*\.[0-9]*" ${MYSQLTEST_VARDIR}/log/mysqld.2.err | tail -1))