mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
21 lines
669 B
Tcl
21 lines
669 B
Tcl
# See the file LICENSE for redistribution information.
|
|
#
|
|
# Copyright (c) 1996-2004
|
|
# Sleepycat Software. All rights reserved.
|
|
#
|
|
# $Id: test018.tcl,v 11.10 2004/01/28 03:36:30 bostic Exp $
|
|
#
|
|
# TEST test018
|
|
# TEST Offpage duplicate test
|
|
# TEST Key_{first,last,before,after} offpage duplicates.
|
|
# TEST Run duplicates with small page size so that we test off page
|
|
# TEST duplicates.
|
|
proc test018 { method {nentries 10000} args} {
|
|
puts "Test018: Off page duplicate tests"
|
|
set pgindex [lsearch -exact $args "-pagesize"]
|
|
if { $pgindex != -1 } {
|
|
puts "Test018: Skipping for specific pagesizes"
|
|
return
|
|
}
|
|
eval {test011 $method $nentries 19 "018" -pagesize 512} $args
|
|
}
|