1#
2# Tests concurrent inserts for tables with no primary key.
3#
4
5--source include/have_rocksdb.inc
6
7--source include/have_debug.inc
8
9# create the actual table
10CREATE TABLE t1 (a INT) ENGINE=rocksdb;
11
12--let $exec = python suite/rocksdb/t/rocksdb_concurrent_insert.py root 127.0.0.1 $MASTER_MYPORT test t1 100 4
13exec $exec;
14
15SELECT COUNT(*) from t1;
16DROP TABLE t1;
17