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

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 1999, 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: test048.tcl,v 11.11 2000/12/11 17:42:18 sue Exp $
  7. #
  8. # Test048: Cursor stability across btree splits.
  9. proc test048 { method args } {
  10. global errorCode
  11. source ./include.tcl
  12. set tstn 048
  13. if { [is_btree $method] != 1 } {
  14. puts "Test$tstn skipping for method $method."
  15. return
  16. }
  17. set pgindex [lsearch -exact $args "-pagesize"]
  18. if { $pgindex != -1 } {
  19. incr pgindex
  20. if { [lindex $args $pgindex] > 8192 } {
  21. puts "Test048: Skipping for large pagesizes"
  22. return
  23. }
  24. }
  25. set method "-btree"
  26. puts "tTest$tstn: Test of cursor stability across btree splits."
  27. set key "key"
  28. set data "data"
  29. set txn ""
  30. set flags ""
  31. puts "tTest$tstn.a: Create $method database."
  32. set eindex [lsearch -exact $args "-env"]
  33. #
  34. # If we are using an env, then testfile should just be the db name.
  35. # Otherwise it is the test directory and the name.
  36. if { $eindex == -1 } {
  37. set testfile $testdir/test0$tstn.db
  38. set env NULL
  39. } else {
  40. set testfile test0$tstn.db
  41. incr eindex
  42. set env [lindex $args $eindex]
  43. }
  44. set t1 $testdir/t1
  45. cleanup $testdir $env
  46. set oflags "-create -truncate -mode 0644 $args $method"
  47. set db [eval {berkdb_open} $oflags $testfile]
  48. error_check_good dbopen [is_valid_db $db] TRUE
  49. set nkeys 5
  50. # Fill page w/ small key/data pairs, keep at leaf
  51. #
  52. puts "tTest$tstn.b: Fill page with $nkeys small key/data pairs."
  53. for { set i 0 } { $i < $nkeys } { incr i } {
  54. set ret [$db put key000$i $data$i]
  55. error_check_good dbput $ret 0
  56. }
  57. # get db ordering, set cursors
  58. puts "tTest$tstn.c: Set cursors on each of $nkeys pairs."
  59. for {set i 0; set ret [$db get key000$i]} {
  60. $i < $nkeys && [llength $ret] != 0} {
  61. incr i; set ret [$db get key000$i]} {
  62. set key_set($i) [lindex [lindex $ret 0] 0]
  63. set data_set($i) [lindex [lindex $ret 0] 1]
  64. set dbc [$db cursor]
  65. set dbc_set($i) $dbc
  66. error_check_good db_cursor:$i [is_substr $dbc_set($i) $db] 1
  67. set ret [$dbc_set($i) get -set $key_set($i)]
  68. error_check_bad dbc_set($i)_get:set [llength $ret] 0
  69. }
  70. # if mkeys is above 1000, need to adjust below for lexical order
  71. set mkeys 1000
  72. puts "tTest$tstn.d: Add $mkeys pairs to force split."
  73. for {set i $nkeys} { $i < $mkeys } { incr i } {
  74. if { $i >= 100 } {
  75. set ret [$db put key0$i $data$i]
  76. } elseif { $i >= 10 } {
  77. set ret [$db put key00$i $data$i]
  78. } else {
  79. set ret [$db put key000$i $data$i]
  80. }
  81. error_check_good dbput:more $ret 0
  82. }
  83. puts "tTest$tstn.e: Make sure split happened."
  84. error_check_bad stat:check-split [is_substr [$db stat] 
  85. "{{Internal pages} 0}"] 1
  86. puts "tTest$tstn.f: Check to see that cursors maintained reference."
  87. for {set i 0} { $i < $nkeys } {incr i} {
  88. set ret [$dbc_set($i) get -current]
  89. error_check_bad dbc$i:get:current [llength $ret] 0
  90. set ret2 [$dbc_set($i) get -set $key_set($i)]
  91. error_check_bad dbc$i:get:set [llength $ret2] 0
  92. error_check_good dbc$i:get(match) $ret $ret2
  93. }
  94. puts "tTest$tstn.g: Delete added keys to force reverse split."
  95. for {set i $nkeys} { $i < $mkeys } { incr i } {
  96. if { $i >= 100 } {
  97. error_check_good db_del:$i [$db del key0$i] 0
  98. } elseif { $i >= 10 } {
  99. error_check_good db_del:$i [$db del key00$i] 0
  100. } else {
  101. error_check_good db_del:$i [$db del key000$i] 0
  102. }
  103. }
  104. puts "tTest$tstn.h: Verify reverse split."
  105. error_check_good stat:check-reverse_split [is_substr [$db stat] 
  106. "{{Internal pages} 0}"] 1
  107. puts "tTest$tstn.i: Verify cursor reference."
  108. for {set i 0} { $i < $nkeys } {incr i} {
  109. set ret [$dbc_set($i) get -current]
  110. error_check_bad dbc$i:get:current [llength $ret] 0
  111. set ret2 [$dbc_set($i) get -set $key_set($i)]
  112. error_check_bad dbc$i:get:set [llength $ret2] 0
  113. error_check_good dbc$i:get(match) $ret $ret2
  114. }
  115. puts "tTest$tstn.j: Cleanup."
  116. # close cursors
  117. for {set i 0} { $i < $nkeys } {incr i} {
  118. error_check_good dbc_close:$i [$dbc_set($i) close] 0
  119. }
  120. error_check_good dbclose [$db close] 0
  121. puts "tTest$tstn complete."
  122. }