From a175314c3e5827eb193872241446f2f8f5c9d33c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:07:14 +0200 Subject: Adding upstream version 1:10.5.12. Signed-off-by: Daniel Baumann --- storage/tokudb/PerconaFT/ft/tests/ft-test2.cc | 85 +++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 storage/tokudb/PerconaFT/ft/tests/ft-test2.cc (limited to 'storage/tokudb/PerconaFT/ft/tests/ft-test2.cc') diff --git a/storage/tokudb/PerconaFT/ft/tests/ft-test2.cc b/storage/tokudb/PerconaFT/ft/tests/ft-test2.cc new file mode 100644 index 00000000..46476691 --- /dev/null +++ b/storage/tokudb/PerconaFT/ft/tests/ft-test2.cc @@ -0,0 +1,85 @@ +/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */ +// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4: +#ident "$Id$" +/*====== +This file is part of PerconaFT. + + +Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved. + + PerconaFT is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License, version 2, + as published by the Free Software Foundation. + + PerconaFT is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with PerconaFT. If not, see . + +---------------------------------------- + + PerconaFT is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License, version 3, + as published by the Free Software Foundation. + + PerconaFT is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with PerconaFT. If not, see . +======= */ + +#ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved." + +#include "test.h" + +static TOKUTXN const null_txn = 0; + +static void test2 (int limit) { + FT_HANDLE t; + int r; + int i; + CACHETABLE ct; + const char *fname = TOKU_TEST_FILENAME; + if (verbose) printf("%s:%d checking\n", __FILE__, __LINE__); + + toku_cachetable_create(&ct, 0, ZERO_LSN, nullptr); + unlink(fname); + r = toku_open_ft_handle(fname, 1, &t, 1024, 256, TOKU_DEFAULT_COMPRESSION_METHOD, ct, null_txn, toku_builtin_compare_fun); + if (verbose) printf("%s:%d did setup\n", __FILE__, __LINE__); + assert(r==0); + for (i=0; i