mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
refs #5629 respect the put flags
git-svn-id: file:///svn/toku/tokudb@50319 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
ea7d0656be
commit
a6d4ee723c
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ static int UU() iibench_put_op(DB_TXN *txn, ARG arg, void *operation_extra, void
|
|||
// The first index is unique with serial autoincrement keys.
|
||||
// The rest are have keys generated with this thread's random data.
|
||||
for (int i = 0; i < num_dbs; i++) {
|
||||
mult_put_flags[i] = i == 0 ? DB_NOOVERWRITE : 0;
|
||||
mult_put_flags[i] = get_put_flags(arg->cli) | (i == 0 ? DB_NOOVERWRITE : 0);
|
||||
dbs[i]->app_private = i == 0 ? nullptr : arg->random_data;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue