mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
Merge 10.2 into 10.3
This commit is contained in:
commit
b42dbdbccd
46 changed files with 612 additions and 128 deletions
|
|
@ -1,5 +1,3 @@
|
|||
#!/bin/awk
|
||||
|
||||
/Query_time:/ {
|
||||
results["Rows_examined:"] = "uninit";
|
||||
results["RocksDB_key_skipped:"] = "uninit";
|
||||
|
|
|
|||
|
|
@ -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')"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
COPY_LOG=$1
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
# Insert 100 batches of 100 records each to a table with following schema:
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
# Initially loads a chunk of data.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
# Insert 10 batches of 10 records each to a table with following schema:
|
||||
|
|
|
|||
|
|
@ -1,2 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
src_data_dir="${MYSQLTEST_VARDIR}/mysqld.1/data/"
|
||||
rm "${src_data_dir}/slocket"
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue