test079.tcl
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: test079.tcl,v 11.5 2000/11/16 23:56:18 ubell Exp $
  7. #
  8. # DB Test 79 {access method}
  9. # Check that delete operations work in large btrees.  10000 entries and
  10. # a pagesize of 512 push this out to a four-level btree, with a small fraction
  11. # of the entries going on overflow pages.
  12. proc test079 { method {nentries 10000} {pagesize 512} {tnum 79} args} {
  13. if { [ is_queueext $method ] == 1 } {
  14. set method  "queue";
  15. lappend args "-extent" "20"
  16. }
  17. eval {test006 $method $nentries 1 $tnum -pagesize $pagesize} $args
  18. }