mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
15 lines
552 B
Tcl
15 lines
552 B
Tcl
# See the file LICENSE for redistribution information.
|
|
#
|
|
# Copyright (c) 1996, 1997, 1998, 1999, 2000
|
|
# Sleepycat Software. All rights reserved.
|
|
#
|
|
# $Id: test009.tcl,v 11.4 2000/05/22 12:51:38 bostic Exp $
|
|
#
|
|
# DB Test 9 {access method}
|
|
# Check that we reuse overflow pages. Create database with lots of
|
|
# big key/data pairs. Go through and delete and add keys back
|
|
# randomly. Then close the DB and make sure that we have everything
|
|
# we think we should.
|
|
proc test009 { method {nentries 10000} args} {
|
|
eval {test008 $method $nentries 9 0} $args
|
|
}
|