mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
14 lines
506 B
Tcl
14 lines
506 B
Tcl
# See the file LICENSE for redistribution information.
|
|
#
|
|
# Copyright (c) 1996, 1997, 1998, 1999, 2000
|
|
# Sleepycat Software. All rights reserved.
|
|
#
|
|
# $Id: test005.tcl,v 11.4 2000/05/22 12:51:38 bostic Exp $
|
|
#
|
|
# DB Test 5 {access method}
|
|
# Check that cursor operations work. Create a database; close database and
|
|
# reopen it. Then read through the database sequentially using cursors and
|
|
# delete each element.
|
|
proc test005 { method {nentries 10000} args } {
|
|
eval {test004 $method $nentries 5 0} $args
|
|
}
|