Files
sysbench/tests/include/script_bulk_insert_common.sh

34 lines
904 B
Bash

#!/usr/bin/env bash
#
################################################################################
# Common code for select_bulk_insert* 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
#
# db_show_table() -- called with a single argument to dump a specified table
# schema
################################################################################
set -eu
ARGS="--test=${SBTEST_SCRIPTDIR}/bulk_insert.lua $DB_DRIVER_ARGS --num-threads=2 --verbosity=1"
sysbench $ARGS prepare
for i in $(seq 1 3)
do
db_show_table sbtest${i} || true # Error on non-existing table
done
sysbench $ARGS --max-requests=100 --verbosity=3 run
sysbench $ARGS cleanup
for i in $(seq 1 3)
do
db_show_table sbtest${i} || true # Error on non-existing table
done