mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
update tokudb version. mask tests that are broken there.
This commit is contained in:
parent
70f6ac10b3
commit
976e242c78
5 changed files with 18 additions and 1 deletions
|
@ -15,7 +15,7 @@ IF(NOT TOKUDB_OK)
|
|||
ENDIF()
|
||||
|
||||
############################################
|
||||
SET(ENV{TOKUDB_VERSION} "7.0.4")
|
||||
SET(ENV{TOKUDB_VERSION} "7.1.0")
|
||||
SET(TOKUDB_DEB_FILES "usr/lib/mysql/plugin/ha_tokudb.so\netc/mysql/conf.d/tokudb.cnf\nusr/bin/tokuftdump\nusr/share/doc/mariadb-server-5.5/README-TOKUDB\nusr/share/doc/mariadb-server-5.5/README.md" PARENT_SCOPE)
|
||||
SET(USE_BDB OFF CACHE BOOL "")
|
||||
SET(USE_VALGRIND OFF CACHE BOOL "")
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
# verify that information_schema.tokudb_locks gets populated with locks, information_schema.tokudb_lock_waits gets
|
||||
if (`select @@tokudb_version <= "7.1.0"`)
|
||||
{
|
||||
--skip Not fixed in TokuDB 7.1.0 or earlier
|
||||
}
|
||||
# populated with 1 lock_wait and all transactions are present in information_schema.tokudb_trx for 2 clients
|
||||
|
||||
source include/have_tokudb.inc;
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
if (`select @@tokudb_version <= "7.1.0"`)
|
||||
{
|
||||
--skip Not fixed in TokuDB 7.1.0 or earlier
|
||||
}
|
||||
# verify that tokudb_locks and tokudb_lock_waits contents for 2 conflicting transactions with a lock timeout
|
||||
|
||||
source include/have_tokudb.inc;
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
if (`select @@tokudb_version <= "7.1.0"`)
|
||||
{
|
||||
--skip Not fixed in TokuDB 7.1.0 or earlier
|
||||
}
|
||||
# verify that information_schema.tokudb_locks gets populated with locks for 2 clients
|
||||
|
||||
source include/have_tokudb.inc;
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
if (`select @@tokudb_version <= "7.1.0"`)
|
||||
{
|
||||
--skip Not fixed in TokuDB 7.1.0 or earlier
|
||||
}
|
||||
|
||||
#--source include/have_tokudb.inc
|
||||
SET DEFAULT_STORAGE_ENGINE='tokudb';
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue