55 lines
1.6 KiB
Bash
55 lines
1.6 KiB
Bash
#!/usr/bin/env bash
|
|
#
|
|
################################################################################
|
|
# Common code for OLTP tests
|
|
#
|
|
# Expects the following variables and callback functions to be defined by the
|
|
# caller:
|
|
#
|
|
# DB_DRIVER_ARGS -- extra driver-specific arguments to pass to sysbench
|
|
# OLTP_SCRIPT_PATH -- path to the script file to execute
|
|
#
|
|
# db_show_table() -- called with a single argument to dump a specified table
|
|
# schema
|
|
################################################################################
|
|
|
|
set -eu
|
|
|
|
ARGS="${OLTP_SCRIPT_PATH} $DB_DRIVER_ARGS --tables=8"
|
|
|
|
sysbench $ARGS prepare
|
|
|
|
db_show_table sbtest1
|
|
db_show_table sbtest2
|
|
db_show_table sbtest3
|
|
db_show_table sbtest4
|
|
db_show_table sbtest5
|
|
db_show_table sbtest6
|
|
db_show_table sbtest7
|
|
db_show_table sbtest8
|
|
db_show_table sbtest9 || true # Error on non-existing table
|
|
|
|
sysbench $ARGS prewarm || true # MySQL only
|
|
|
|
sysbench $ARGS --events=100 --num-threads=2 run
|
|
|
|
sysbench $ARGS cleanup
|
|
|
|
db_show_table sbtest1 || true # Error on non-existing table
|
|
db_show_table sbtest2 || true # Error on non-existing table
|
|
db_show_table sbtest3 || true # Error on non-existing table
|
|
db_show_table sbtest4 || true # Error on non-existing table
|
|
db_show_table sbtest5 || true # Error on non-existing table
|
|
db_show_table sbtest6 || true # Error on non-existing table
|
|
db_show_table sbtest7 || true # Error on non-existing table
|
|
db_show_table sbtest8 || true # Error on non-existing table
|
|
|
|
# Test --create-secondary=off
|
|
ARGS="${OLTP_SCRIPT_PATH} $DB_DRIVER_ARGS --tables=1"
|
|
|
|
sysbench $ARGS --create-secondary=off prepare
|
|
|
|
db_show_table sbtest1
|
|
|
|
sysbench $ARGS cleanup
|