Fixes #421 by clearing the storage manager before executing the tests.
The test calls the recoverTables method of the storage manager. This method will recover all tables, including their indexes, whose names were found in the tableDumpDir. Therefore, it will also recover indexes which are still existing. This leads to failing.
Before executing recoverTables the test creates folders with names of tables which were used in previous tests by executing the Checkpoint plan operation. It creates folders for all table names, also table names used in previous tests, which are returned by the getTableNames method of the StorageManager.
Fixes #421 by clearing the storage manager before executing the tests.
The test calls the
recoverTables
method of the storage manager. This method will recover all tables, including their indexes, whose names were found in thetableDumpDir
. Therefore, it will also recover indexes which are still existing. This leads to failing.Before executing
recoverTables
the test creates folders with names of tables which were used in previous tests by executing theCheckpoint
plan operation. It creates folders for all table names, also table names used in previous tests, which are returned by thegetTableNames
method of the StorageManager.