⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test046.tcl

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 TCL
📖 第 1 页 / 共 2 页
字号:
					    $"data_over[lindex $w_pair 1]"				} else {					# This is a cursor overwrite					puts \		"\t\tTest046.d.$i:Curs Overwrite:($i_pair) by ($w_pair)."					set ret [$dbc put -current \					    $"data_over[lindex $w_pair 1]"]					error_check_good \				    dbcput:over:i($i_pair):o($w_pair) $ret 0					# check value					set ret [$dbc get -current]					error_check_bad \					    dbc_get:curr [llength $ret] 0					error_check_good dbc_get:curr:data \					    [lindex [lindex $ret 0] 1] \					    $"data_over[lindex $w_pair 1]"				}			} ;# foreach write pair		} ;# foreach initial pair	} ;# foreach type big/small	puts "\tTest046.d.3: Cleanup for next part of test."	error_check_good dbc_close [$dbc close] 0	if { $txnenv == 1 } {		error_check_good txn [$t commit] 0	}	error_check_good db_close [$db close] 0	if { [is_rbtree $method] == 1} {		puts "\tSkipping the rest of Test046 for method $method."		puts "\tTest046 complete."		return	}	puts "\tTest046.e.1: Open db with sorted dups."	set db [eval {berkdb_open_noerr} $oflags -dup -dupsort $testfile.e]	error_check_good dbopen [is_valid_db $db] TRUE	# keep nkeys even	set nkeys 20	set ndups 20	# Fill page w/ small key/data pairs	puts "\tTest046.e.2:\	    Put $nkeys small key/data pairs and $ndups sorted dups."	for { set i 0 } { $i < $nkeys } { incr i } {		if { $txnenv == 1 } {			set t [$env txn]			error_check_good txn [is_valid_txn $t $env] TRUE			set txn "-txn $t"		}		if { $i < 10 } {			set ret [eval {$db put} $txn [set key]0$i [set data]0$i]		} else {			set ret [eval {$db put} $txn {$key$i $data$i}]		}		error_check_good dbput $ret 0		if { $txnenv == 1 } {			error_check_good txn [$t commit] 0		}	}	if { $txnenv == 1 } {		set t [$env txn]		error_check_good txn [is_valid_txn $t $env] TRUE		set txn "-txn $t"	}	# open curs to db	set dbc [eval {$db cursor} $txn]	error_check_good db_cursor [is_substr $dbc $db] 1	# get db order of keys	for {set i 0; set ret [$dbc get -first]} { [llength $ret] != 0} { \			set ret [$dbc get -next]} {		set key_set($i) [lindex [lindex $ret 0] 0]		set data_set($i) [lindex [lindex $ret 0] 1]		incr i	}	# put 20 sorted duplicates on key in middle of page	set i [expr $nkeys/2]	set ret [$dbc get -set $key_set($i)]	error_check_bad dbc_get:set [llength $ret] 0	set keym $key_set($i)	for { set i 0 } { $i < $ndups } { incr i } {		if { $i < 10 } {			set ret [eval {$db put} $txn {$keym DUPLICATE_0$i}]		} else {			set ret [eval {$db put} $txn {$keym DUPLICATE_$i}]		}		error_check_good db_put:DUP($i) $ret 0	}	puts "\tTest046.e.3: Check duplicate duplicates"	set ret [eval {$db put} $txn {$keym DUPLICATE_00}]	error_check_good dbput:dupdup [is_substr $ret "DB_KEYEXIST"] 1	# get dup ordering	for {set i 0; set ret [$dbc get -set $keym]} { [llength $ret] != 0} {\			set ret [$dbc get -nextdup] } {		set dup_set($i) [lindex [lindex $ret 0] 1]		incr i	}	# put cursor on item in middle of dups	set i [expr $ndups/2]	set ret [$dbc get -get_both $keym $dup_set($i)]	error_check_bad dbc_get:get_both [llength $ret] 0	puts "\tTest046.f: Deletes by cursor."	puts "\t\tTest046.f.1: Delete by cursor, do a DB_NEXT, check cursor."	set ret [$dbc get -current]	error_check_bad dbc_get:current [llength $ret] 0	error_check_good dbc:del [$dbc del] 0	set ret [$dbc get -next]	error_check_bad dbc_get:next [llength $ret] 0	error_check_good \	    dbc_get:nextdup [lindex [lindex $ret 0] 1] $dup_set([incr i])	puts "\t\tTest046.f.2: Delete by cursor, do DB_PREV, check cursor."	error_check_good dbc:del [$dbc del] 0	set ret [$dbc get -prev]	error_check_bad dbc_get:prev [llength $ret] 0	set i [incr i -2]	error_check_good dbc_get:prev [lindex [lindex $ret 0] 1] $dup_set($i)	puts "\t\tTest046.f.3: Delete by cursor, do DB_CURRENT, check cursor."	error_check_good dbc:del [$dbc del] 0	set ret [$dbc get -current]	error_check_good dbc_get:current:deleted [llength [lindex $ret 1]] 0	#error_check_good catch:dbc_get:curr [catch {$dbc get -current} ret] 1	#error_check_good \	#   dbc_get:current:deleted [is_substr $ret "DB_KEYEMPTY"] 1	error_check_good dbc_close [$dbc close] 0	if { $txnenv == 1 } {		error_check_good txn [$t commit] 0	}	if { $txnenv == 1 } {		set t [$env txn]		error_check_good txn [is_valid_txn $t $env] TRUE		set txn "-txn $t"	}	# restore deleted keys	error_check_good db_put:1 [eval {$db put} $txn {$keym $dup_set($i)}] 0	error_check_good db_put:2 [eval {$db put} $txn \	    {$keym $dup_set([incr i])}] 0	error_check_good db_put:3 [eval {$db put} $txn \	    {$keym $dup_set([incr i])}] 0	if { $txnenv == 1 } {		error_check_good txn [$t commit] 0	}	# tested above	# Reopen database without __db_err, reset cursor	error_check_good dbclose [$db close] 0	set db [eval {berkdb_open_noerr} $oflags -dup -dupsort $testfile.e]	error_check_good dbopen [is_valid_db $db] TRUE	if { $txnenv == 1 } {		set t [$env txn]		error_check_good txn [is_valid_txn $t $env] TRUE		set txn "-txn $t"	}	set dbc [eval {$db cursor} $txn]	error_check_good db_cursor [is_valid_cursor $dbc $db] TRUE	set ret [$dbc get -set $keym]	error_check_bad dbc_get:set [llength $ret] 0	set ret2 [$dbc get -current]	error_check_bad dbc_get:current [llength $ret2] 0	# match	error_check_good dbc_get:current/set(match) $ret $ret2	# right one?	error_check_good \	    dbc_get:curr/set(matchdup) [lindex [lindex $ret 0] 1] $dup_set(0)	# cursor is on first dup	set ret [$dbc get -next]	error_check_bad dbc_get:next [llength $ret] 0	# now on second dup	error_check_good dbc_get:next [lindex [lindex $ret 0] 1] $dup_set(1)	# check cursor	set ret [$dbc get -current]	error_check_bad dbc_get:curr [llength $ret] 0	error_check_good \	    dbcget:curr(compare) [lindex [lindex $ret 0] 1] $dup_set(1)	puts "\tTest046.g: Inserts."	puts "\t\tTest046.g.1: Insert by key before cursor."	set i 0	# use "spam" to prevent a duplicate duplicate.	set ret [eval {$db put} $txn {$keym $dup_set($i)spam}]	error_check_good db_put:before $ret 0	# make sure cursor was maintained	set ret [$dbc get -current]	error_check_bad dbc_get:curr [llength $ret] 0	error_check_good \	    dbc_get:current(post-put) [lindex [lindex $ret 0] 1] $dup_set(1)	puts "\t\tTest046.g.2: Insert by key after cursor."	set i [expr $i + 2]	# use "eggs" to prevent a duplicate duplicate	set ret [eval {$db put} $txn {$keym $dup_set($i)eggs}]	error_check_good db_put:after $ret 0	# make sure cursor was maintained	set ret [$dbc get -current]	error_check_bad dbc_get:curr [llength $ret] 0	error_check_good \	    dbc_get:curr(post-put,after) [lindex [lindex $ret 0] 1] $dup_set(1)	puts "\t\tTest046.g.3: Insert by curs before/after curs (should fail)."	# should return EINVAL (dupsort specified)	error_check_good dbc_put:before:catch \	    [catch {$dbc put -before $dup_set([expr $i -1])} ret] 1	error_check_good \	    dbc_put:before:deleted [is_substr $errorCode "EINVAL"] 1	error_check_good dbc_put:after:catch \	    [catch {$dbc put -after $dup_set([expr $i +2])} ret] 1	error_check_good \	    dbc_put:after:deleted [is_substr $errorCode "EINVAL"] 1	puts "\tTest046.h: Cursor overwrites."	puts "\t\tTest046.h.1: Test that dupsort disallows current overwrite."	set ret [$dbc get -set $keym]	error_check_bad dbc_get:set [llength $ret] 0	error_check_good \	    catch:dbc_put:curr [catch {$dbc put -current DATA_OVERWRITE} ret] 1	error_check_good dbc_put:curr:dupsort [is_substr $errorCode EINVAL] 1	puts "\t\tTest046.h.2: New db (no dupsort)."	error_check_good dbc_close [$dbc close] 0	if { $txnenv == 1 } {		error_check_good txn [$t commit] 0	}	error_check_good db_close [$db close] 0	set db [eval {berkdb_open} \	    $oflags -dup $testfile.h]	error_check_good db_open [is_valid_db $db] TRUE	if { $txnenv == 1 } {		set t [$env txn]		error_check_good txn [is_valid_txn $t $env] TRUE		set txn "-txn $t"	}	set dbc [eval {$db cursor} $txn]	error_check_good db_cursor [is_valid_cursor $dbc $db] TRUE	for {set i 0} {$i < $nkeys} {incr i} {		if { $i < 10 } {			set ret [eval {$db put} $txn {key0$i datum0$i}]			error_check_good db_put $ret 0		} else {			set ret [eval {$db put} $txn {key$i datum$i}]			error_check_good db_put $ret 0		}		if { $i == 0 } {			for {set j 0} {$j < $ndups} {incr j} {				if { $i < 10 } {					set keyput key0$i				} else {					set keyput key$i				}				if { $j < 10 } {					set ret [eval {$db put} $txn \					    {$keyput DUP_datum0$j}]				} else {					set ret [eval {$db put} $txn \					    {$keyput DUP_datum$j}]				}				error_check_good dbput:dup $ret 0			}		}	}	for {set i 0; set ret [$dbc get -first]} { [llength $ret] != 0} { \	    set ret [$dbc get -next]} {		set key_set($i) [lindex [lindex $ret 0] 0]		set data_set($i) [lindex [lindex $ret 0] 1]		incr i	}	for {set i 0; set ret [$dbc get -set key00]} {\	    [llength $ret] != 0} {set ret [$dbc get -nextdup]} {		set dup_set($i) [lindex [lindex $ret 0] 1]		incr i	}	set i 0	set keym key0$i	set ret [$dbc get -set $keym]	error_check_bad dbc_get:set [llength $ret] 0	error_check_good \	    dbc_get:set(match) [lindex [lindex $ret 0] 1] $dup_set($i)	set ret [$dbc get -nextdup]	error_check_bad dbc_get:nextdup [llength $ret] 0	error_check_good dbc_get:nextdup(match) \	    [lindex [lindex $ret 0] 1] $dup_set([expr $i + 1])	puts "\t\tTest046.h.3: Insert by cursor before cursor (DB_BEFORE)."	set ret [$dbc put -before BEFOREPUT]	error_check_good dbc_put:before $ret 0	set ret [$dbc get -current]	error_check_bad dbc_get:curr [llength $ret] 0	error_check_good \	    dbc_get:curr:match [lindex [lindex $ret 0] 1] BEFOREPUT	# make sure that this is actually a dup w/ dup before	set ret [$dbc get -prev]	error_check_bad dbc_get:prev [llength $ret] 0	error_check_good dbc_get:prev:match \		[lindex [lindex $ret 0] 1] $dup_set($i)	set ret [$dbc get -prev]	# should not be a dup	error_check_bad dbc_get:prev(no_dup) \		[lindex [lindex $ret 0] 0] $keym	puts "\t\tTest046.h.4: Insert by cursor after cursor (DB_AFTER)."	set ret [$dbc get -set $keym]	# delete next 3 when fix	#puts "[$dbc get -current]\	#   [$dbc get -next] [$dbc get -next] [$dbc get -next] [$dbc get -next]"	#set ret [$dbc get -set $keym]	error_check_bad dbc_get:set [llength $ret] 0	set ret [$dbc put -after AFTERPUT]	error_check_good dbc_put:after $ret 0	#puts [$dbc get -current]	# delete next 3 when fix	#set ret [$dbc get -set $keym]	#puts "[$dbc get -current] next: [$dbc get -next] [$dbc get -next]"	#set ret [$dbc get -set AFTERPUT]	#set ret [$dbc get -set $keym]	#set ret [$dbc get -next]	#puts $ret	set ret [$dbc get -current]	error_check_bad dbc_get:curr [llength $ret] 0	error_check_good dbc_get:curr:match [lindex [lindex $ret 0] 1] AFTERPUT	set ret [$dbc get -prev]	# now should be on first item (non-dup) of keym	error_check_bad dbc_get:prev1 [llength $ret] 0	error_check_good \	    dbc_get:match [lindex [lindex $ret 0] 1] $dup_set($i)	set ret [$dbc get -next]	error_check_bad dbc_get:next [llength $ret] 0	error_check_good \	    dbc_get:match2 [lindex [lindex $ret 0] 1] AFTERPUT	set ret [$dbc get -next]	error_check_bad dbc_get:next [llength $ret] 0	# this is the dup we added previously	error_check_good \	    dbc_get:match3 [lindex [lindex $ret 0] 1] BEFOREPUT	# now get rid of the dups we added	error_check_good dbc_del [$dbc del] 0	set ret [$dbc get -prev]	error_check_bad dbc_get:prev2 [llength $ret] 0	error_check_good dbc_del2 [$dbc del] 0	# put cursor on first dup item for the rest of test	set ret [$dbc get -set $keym]	error_check_bad dbc_get:first [llength $ret] 0	error_check_good \	    dbc_get:first:check [lindex [lindex $ret 0] 1] $dup_set($i)	puts "\t\tTest046.h.5: Overwrite small by small."	set ret [$dbc put -current DATA_OVERWRITE]	error_check_good dbc_put:current:overwrite $ret 0	set ret [$dbc get -current]	error_check_good dbc_get:current(put,small/small) \	    [lindex [lindex $ret 0] 1] DATA_OVERWRITE	puts "\t\tTest046.h.6: Overwrite small with big."	set ret [$dbc put -current DATA_BIG_OVERWRITE[repeat $alphabet 200]]	error_check_good dbc_put:current:overwrite:big $ret 0	set ret [$dbc get -current]	error_check_good dbc_get:current(put,small/big) \	    [is_substr [lindex [lindex $ret 0] 1] DATA_BIG_OVERWRITE] 1	puts "\t\tTest046.h.7: Overwrite big with big."	set ret [$dbc put -current DATA_BIG_OVERWRITE2[repeat $alphabet 200]]	error_check_good dbc_put:current:overwrite(2):big $ret 0	set ret [$dbc get -current]	error_check_good dbc_get:current(put,big/big) \	    [is_substr [lindex [lindex $ret 0] 1] DATA_BIG_OVERWRITE2] 1	puts "\t\tTest046.h.8: Overwrite big with small."	set ret [$dbc put -current DATA_OVERWRITE2]	error_check_good dbc_put:current:overwrite:small $ret 0	set ret [$dbc get -current]	error_check_good dbc_get:current(put,big/small) \	    [is_substr [lindex [lindex $ret 0] 1] DATA_OVERWRITE2] 1	puts "\tTest046.i: Cleaning up from test."	error_check_good dbc_close [$dbc close] 0	if { $txnenv == 1 } {		error_check_good txn [$t commit] 0	}	error_check_good db_close [$db close] 0	puts "\tTest046 complete."}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -