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

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 1996, 1997, 1998, 1999, 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: recd002.tcl,v 11.22 2000/12/11 17:24:54 sue Exp $
  7. #
  8. # Recovery Test #2.  Verify that splits can be recovered.
  9. proc recd002 { method {select 0} args} {
  10. source ./include.tcl
  11. global rand_init
  12. set args [convert_args $method $args]
  13. set omethod [convert_method $method]
  14. set pgindex [lsearch -exact $args "-pagesize"]
  15. if { $pgindex != -1 } {
  16. puts "Recd002: skipping for specific pagesizes"
  17. return
  18. }
  19. berkdb srand $rand_init
  20. # Queues don't do splits, so we don't really need the small page
  21. # size and the small page size is smaller than the record, so it's
  22. # a problem.
  23. if { [string compare $omethod "-queue"] == 0 } {
  24. set pagesize 4096
  25. } else {
  26. set pagesize 512
  27. }
  28. puts "Recd002: $method split recovery tests"
  29. env_cleanup $testdir
  30. set testfile recd002.db
  31. set testfile2 recd002-2.db
  32. set eflags 
  33.     "-create -txn -lock_max 2000 -home $testdir"
  34. puts "tRecd002.a: creating environment"
  35. set env_cmd "berkdb env $eflags"
  36. set dbenv [eval $env_cmd]
  37. error_check_bad dbenv $dbenv NULL
  38. # Create the databases. We will use a small page size so that splits
  39. # happen fairly quickly.
  40. set oflags "-create $args $omethod -mode 0644 -env $dbenv
  41.     -pagesize $pagesize $testfile"
  42. set db [eval {berkdb_open} $oflags]
  43. error_check_bad db_open $db NULL
  44. error_check_good db_open [is_substr $db db] 1
  45. error_check_good db_close [$db close] 0
  46. set oflags "-create $args $omethod -mode 0644 -env $dbenv
  47.     -pagesize $pagesize $testfile2"
  48. set db [eval {berkdb_open} $oflags]
  49. error_check_bad db_open $db NULL
  50. error_check_good db_open [is_substr $db db] 1
  51. error_check_good db_close [$db close] 0
  52. reset_env $dbenv
  53. # List of recovery tests: {CMD MSG} pairs
  54. set slist {
  55. { {populate DB $omethod TXNID $n 0 0} "Recd002.b: splits"}
  56. { {unpopulate DB TXNID $r} "Recd002.c: Remove keys"}
  57. }
  58. # If pages are 512 bytes, then adding 512 key/data pairs
  59. # should be more than sufficient.
  60. set n 512
  61. set r [expr $n / 2 ]
  62. foreach pair $slist {
  63. set cmd [subst [lindex $pair 0]]
  64. set msg [lindex $pair 1]
  65. if { $select != 0 } {
  66. set tag [lindex $msg 0]
  67. set tail [expr [string length $tag] - 2]
  68. set tag [string range $tag $tail $tail]
  69. if { [lsearch $select $tag] == -1 } {
  70. continue
  71. }
  72. }
  73. op_recover abort $testdir $env_cmd $testfile $cmd $msg
  74. op_recover commit $testdir $env_cmd $testfile $cmd $msg
  75. op_recover prepare $testdir $env_cmd $testfile2 $cmd $msg
  76. op_recover prepare-abort $testdir $env_cmd $testfile2 
  77. $cmd $msg
  78. op_recover prepare-commit $testdir $env_cmd $testfile2 
  79. $cmd $msg
  80. }
  81. puts "tRecd002.d: Verify db_printlog can read logfile"
  82. set tmpfile $testdir/printlog.out
  83. set stat [catch {exec $util_path/db_printlog -h $testdir 
  84.     > $tmpfile} ret]
  85. error_check_good db_printlog $stat 0
  86. fileremove $tmpfile
  87. }