Description
The following script:
import wiredtiger, wttest
|
|
# Test configuration strings.
|
class test_XXX(wttest.WiredTigerTestCase):
|
def test_XXX(self):
|
self.session.create('table:foo', 'type=lsm,huffman_key=XXX')
|
|
if __name__ == '__main__':
|
wttest.run()
|
panics WiredTiger:
f.test_XXX.test_XXX, file:foo-000001.lsm, session.create: unknown Huffman configuration value XXX: Invalid argument
|
f.test_XXX.test_XXX, session.create: Failed doing LSM switch: Invalid argument
|
f.test_XXX.test_XXX, session.create: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, cursor.set_key: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, file:WiredTiger.wt, cursor.search: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, file:WiredTiger.wt, cursor.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, session.create: metadata unroll remove: file:foo-000001.lsm: WT_PANIC: WiredTiger library panic
|
f.test_XXX.test_XXX, cursor.set_key: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, file:WiredTiger.wt, cursor.search: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, file:WiredTiger.wt, cursor.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, session.create: metadata unroll remove: lsm:foo: WT_PANIC: WiredTiger library panic
|
f.test_XXX.test_XXX, cursor.set_key: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, file:WiredTiger.wt, cursor.search: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, file:WiredTiger.wt, cursor.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, session.create: metadata unroll remove: table:foo: WT_PANIC: WiredTiger library panic
|
f.test_XXX.test_XXX, connection.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, session.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, session.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, session.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, session.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, session.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, session.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, file:WiredTiger.wt, connection.close: pthread_rwlock_destroy: data handle: Resource busy
|
f.test_XXX.test_XXX, session.close: the WiredTiger library cannot continue; the process must exit and restart
|
f.test_XXX.test_XXX, session.close: the WiredTiger library cannot continue; the process must exit and restart
|