1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 1999-2009 Oracle. All rights reserved.
#
# $Id$
#
# TEST test096
# TEST Db->truncate test.
# TEST For all methods:
# TEST Test that truncate empties an existing database.
# TEST Test that truncate-write in an aborted txn doesn't
# TEST change the original contents.
# TEST Test that truncate-write in a committed txn does
# TEST overwrite the original contents.
# TEST For btree and hash, do the same in a database with offpage dups.
proc test096 { method {pagesize 512} {nentries 1000} {ndups 19} args} {
global fixed_len
global alphabet
source ./include.tcl
set orig_tdir $testdir
set orig_fixed_len $fixed_len
set args [convert_args $method $args]
set encargs ""
set args [split_encargs $args encargs]
set omethod [convert_method $method]
if { [is_partitioned $args] == 1 } {
set nodump 1
} else {
set nodump 0
}
puts "Test096: $method db truncate method test"
set pgindex [lsearch -exact $args "-pagesize"]
if { $pgindex != -1 } {
puts "Test096: Skipping for specific pagesizes"
return
}
# Create the database and open the dictionary
set eindex [lsearch -exact $args "-env"]
set testfile test096.db
if { $eindex != -1 } {
incr eindex
set env [lindex $args $eindex]
set txnenv [is_txnenv $env]
if { $txnenv == 0 } {
puts "Environment w/o txns specified; skipping."
return
}
if { $nentries == 1000 } {
set nentries 100
}
reduce_dups nentries ndups
set testdir [get_home $env]
set closeenv 0
} else {
env_cleanup $testdir
# We need an env for exclusive-use testing. Since we are
# using txns, we need at least 1 lock per record for queue.
set lockmax [expr $nentries * 3]
set env [eval {berkdb_env -create -home $testdir \
-lock_max_locks $lockmax -lock_max_objects $lockmax \
-pagesize $pagesize -txn} $encargs]
error_check_good env_create [is_valid_env $env] TRUE
set closeenv 1
}
set t1 $testdir/t1
puts "\tTest096.a: Create database with $nentries entries"
set db [eval {berkdb_open -create -auto_commit \
-env $env $omethod -mode 0644} $args $testfile]
error_check_good db_open [is_valid_db $db] TRUE
t96_populate $db $omethod $env $nentries
error_check_good dbclose [$db close] 0
puts "\tTest096.b: Truncate database"
set dbtr [eval {berkdb_open -create -auto_commit \
-env $env $omethod -mode 0644} $args $testfile]
error_check_good db_open [is_valid_db $dbtr] TRUE
set ret [$dbtr truncate]
error_check_good dbtrunc $ret $nentries
error_check_good db_close [$dbtr close] 0
set db [eval {berkdb_open -env $env} $args $testfile]
error_check_good dbopen [is_valid_db $db] TRUE
set number [number_of_entries $db $method]
error_check_good number_of_entries $number 0
error_check_good dbclose [$db close] 0
error_check_good dbverify [verify_dir $testdir "\tTest096.c: " 0 0 $nodump] 0
# Remove and recreate database.
puts "\tTest096.d: Recreate database with $nentries entries"
set db [eval {berkdb_open -create -auto_commit \
-env $env $omethod -mode 0644} $args {$testfile}]
error_check_good db_open [is_valid_db $db] TRUE
t96_populate $db $omethod $env $nentries
error_check_good dbclose [$db close] 0
puts "\tTest096.e: Truncate and write in a txn, then abort"
txn_truncate $env $omethod $args $testfile $nentries abort 1
set db [eval {berkdb_open -env $env} $args $testfile]
error_check_good dbopen [is_valid_db $db] TRUE
# Database should have original contents since both the truncate
# and the write were aborted
set number [number_of_entries $db $method]
error_check_good number_of_entries $number $nentries
error_check_good dbclose [$db close] 0
error_check_good dbverify [verify_dir $testdir "\tTest096.f: " 0 0 $nodump] 0
puts "\tTest096.g: Truncate and write in a txn, then commit"
txn_truncate $env $omethod $args $testfile $nentries commit 1
set db [eval {berkdb_open -env $env} $args $testfile]
error_check_good dbopen [is_valid_db $db] TRUE
# Database should contain only the new items
set number [number_of_entries $db $method]
error_check_good number_of_entries $number [expr $nentries / 2]
error_check_good dbclose [$db close] 0
error_check_good dbverify [verify_dir $testdir "\tTest096.h: " 0 0 $nodump] 0
puts "\tTest096.i: Check proper handling of overflow pages."
# Large keys and data compared to page size guarantee
# overflow pages.
if { [is_fixed_length $method] == 1 } {
puts "Skipping overflow test for fixed-length method."
} else {
set overflowfile overflow096.db
set data [repeat $alphabet 600]
set db [eval {berkdb_open -create -auto_commit -pagesize 512 \
-env $env $omethod -mode 0644} $args $overflowfile]
error_check_good db_open [is_valid_db $db] TRUE
set noverflows 100
for { set i 1 } { $i <= $noverflows } { incr i } {
set ret [eval {$db put} \
$i [chop_data $method "$i$data"]]
}
# Hash reports pages of type P_OVERFLOW as "big pages", other
# access methods as "overflow pages".
if { [is_hash $method] == 1 } {
set bigpages [stat_field $db stat "Number of big pages"]
error_check_good stat:bigpages [expr $bigpages > 0] 1
} else {
set overflow [stat_field $db stat "Overflow pages"]
error_check_good stat:overflow [expr $overflow > 0] 1
}
error_check_good overflow_truncate [$db truncate] $noverflows
error_check_good overflow_close [$db close] 0
}
# Remove database and create a new one with unsorted dups.
# Skip the rest of the test for methods not supporting dups
# and for compression, which does not support unsorted dups.
#
if { [is_record_based $method] == 1 || \
[is_compressed $args] == 1 || \
[is_rbtree $method] == 1 } {
puts "Skipping remainder of test096."
if { $closeenv == 1 } {
error_check_good envclose [$env close] 0
}
return
}
set ret [berkdb dbremove -env $env -auto_commit $testfile]
set ret [berkdb dbremove -env $env -auto_commit $overflowfile]
puts "\tTest096.j: Create $nentries entries with $ndups duplicates"
set db [eval {berkdb_open -pagesize $pagesize -dup -auto_commit \
-create -env $env $omethod -mode 0644} $args $testfile]
error_check_good db_open [is_valid_db $db] TRUE
t96_populate $db $omethod $env $nentries $ndups
set dlist ""
for { set i 1 } {$i <= $ndups} {incr i} {
lappend dlist $i
}
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
dup_check $db $txn $t1 $dlist
error_check_good txn [$t commit] 0
# Make sure there are duplicates.
puts "\tTest096.k: Verify off page duplicates status"
set duplicate [stat_field $db stat "Duplicate pages"]
error_check_good stat:offpage_dups [expr $duplicate > 0] 1
set recs [expr $ndups * $nentries]
error_check_good dbclose [$db close] 0
puts "\tTest096.l: Truncate database in a txn then abort"
txn_truncate $env $omethod $args $testfile $recs abort
set db [eval {berkdb_open -auto_commit -env $env} $args $testfile]
error_check_good dbopen [is_valid_db $db] TRUE
set number [number_of_entries $db $method]
error_check_good number_of_entries $number $recs
error_check_good dbclose [$db close] 0
puts "\tTest096.m: Truncate database in a txn then commit"
txn_truncate $env $omethod $args $testfile $recs commit
set db [eval {berkdb_open -auto_commit -env $env} $args {$testfile}]
error_check_good dbopen [is_valid_db $db] TRUE
set number [number_of_entries $db $method]
error_check_good number_of_entries $number 0
error_check_good dbclose [$db close] 0
set testdir [get_home $env]
error_check_good dbverify \
[verify_dir $testdir "\tTest096.n: " 0 0 $nodump] 0
# Remove database, and create a new one with dups. Test
# truncate + write within a transaction.
puts "\tTest096.o: Create $nentries entries with $ndups duplicates"
set ret [berkdb dbremove -env $env -auto_commit $testfile]
set db [eval {berkdb_open -pagesize $pagesize -dup -auto_commit \
-create -env $env $omethod -mode 0644} $args $testfile]
error_check_good db_open [is_valid_db $db] TRUE
t96_populate $db $omethod $env $nentries $ndups
set dlist ""
for { set i 1 } {$i <= $ndups} {incr i} {
lappend dlist $i
}
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
dup_check $db $txn $t1 $dlist
error_check_good txn [$t commit] 0
puts "\tTest096.p: Verify off page duplicates status"
set duplicate [stat_field $db stat "Duplicate pages"]
error_check_good stat:offpage [expr $duplicate > 0] 1
set recs [expr $ndups * $nentries]
error_check_good dbclose [$db close] 0
puts "\tTest096.q: Truncate and write in a txn, then abort"
txn_truncate $env $omethod $args $testfile $recs abort 1
set db [eval {berkdb_open -auto_commit -env $env} $args $testfile]
error_check_good dbopen [is_valid_db $db] TRUE
set number [number_of_entries $db $method]
error_check_good number_of_entries $number $recs
error_check_good dbclose [$db close] 0
puts "\tTest096.r: Truncate and write in a txn, then commit"
txn_truncate $env $omethod $args $testfile $recs commit 1
set db [eval {berkdb_open -auto_commit -env $env} $args {$testfile}]
error_check_good dbopen [is_valid_db $db] TRUE
set number [number_of_entries $db $method]
error_check_good number_of_entries $number [expr $recs / 2]
error_check_good dbclose [$db close] 0
puts "\tTest096.s: Check overflow pages with dups."
set ndups 3
set db [eval {berkdb_open -create -auto_commit -pagesize 512 \
-env $env $omethod -dup -mode 0644} $args $overflowfile]
error_check_good db_open [is_valid_db $db] TRUE
for { set i 1 } { $i <= $noverflows } { incr i } {
for { set j 0 } { $j < $ndups } { incr j } {
set ret [eval {$db put} \
$i [chop_data $method "$i.$j$data"]]
}
}
# Hash reports pages of type P_OVERFLOW as "big pages", other
# access methods as "overflow pages".
if { [is_hash $method] == 1 } {
set bigpages [stat_field $db stat "Number of big pages"]
error_check_good stat:bigpages [expr $bigpages > 0] 1
} else {
set overflow [stat_field $db stat "Overflow pages"]
error_check_good stat:overflow [expr $overflow > 0] 1
}
set nentries [expr $noverflows * $ndups]
error_check_good overflow_truncate [$db truncate] $nentries
error_check_good overflow_close [$db close] 0
set testdir [get_home $env]
error_check_good dbverify [verify_dir $testdir "\tTest096.t: " 0 0 $nodump] 0
if { $closeenv == 1 } {
error_check_good envclose [$env close] 0
}
set testdir $orig_tdir
}
proc t96_populate {db method env nentries {ndups 1}} {
source ./include.tcl
set did [open $dict]
set count 0
set txn ""
set pflags ""
set gflags ""
if { [is_record_based $method] == 1 } {
append gflags "-recno"
}
while { [gets $did str] != -1 && $count < $nentries } {
if { [is_record_based $method] == 1 } {
set key [expr $count + 1]
} else {
set key $str
}
if { $ndups > 1 } {
for { set i 1 } { $i <= $ndups } { incr i } {
set datastr $i:$str
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
set ret [eval {$db put} $txn $pflags \
{$key [chop_data $method $datastr]}]
error_check_good put $ret 0
error_check_good txn [$t commit] 0
}
} else {
set datastr [reverse $str]
set t [$env txn]
error_check_good txn [is_valid_txn $t $env] TRUE
set txn "-txn $t"
set ret [eval {$db put} \
$txn $pflags {$key [chop_data $method $datastr]}]
error_check_good put $ret 0
error_check_good txn [$t commit] 0
}
set ret [eval {$db get} $gflags {$key}]
error_check_good $key:dbget [llength $ret] $ndups
incr count
}
close $did
}
proc number_of_entries { db method } {
if { [is_record_based $method] == 1 } {
set dbc [$db cursor]
set last [$dbc get -last]
if {[llength $last] == 0} {
set number 0
} else {
set number [lindex [lindex $last 0] 0]
}
} else {
set ret [$db get -glob *]
set number [llength $ret]
}
return $number
}
# Open database. Truncate in a transaction, optionally with a write
# included in the transaction as well, then abort or commit. Close database.
proc txn_truncate { env method args testfile nentries op {write 0}} {
set db [eval {berkdb_open -create -auto_commit \
-env $env $method -mode 0644} $args $testfile]
error_check_good db_open [is_valid_db $db] TRUE
set txn [$env txn]
error_check_good txnbegin [is_valid_txn $txn $env] TRUE
set ret [$db truncate -txn $txn]
error_check_good dbtrunc $ret $nentries
if { $write == 1 } {
for {set i 1} {$i <= [expr $nentries / 2]} {incr i} {
set ret [eval {$db put} -txn $txn \
{$i [chop_data $method "aaaaaaaaaa"]}]
error_check_good write $ret 0
}
}
error_check_good txn$op [$txn $op] 0
error_check_good db_close [$db close] 0
}
|