All bundled OLTP tests now declare their supported options. Which means: - unknown options are not be silently accepted, but throw an error (fixes #15) - 'sysbench /any OLTP script/ help' now prints a list of supported options, their descriptions, types and default values just as built-in tests do (fixes #79)
53 lines
1.6 KiB
Bash
53 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 --max-requests=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
|