mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Fix a bug in the calculation of the table record header size.
Ticket #1163. (CVS 2389) FossilOrigin-Name: bf82a04ff7c24a38d45721b3fae69d88d6e83149
This commit is contained in:
44
test/misc5.test
Normal file
44
test/misc5.test
Normal file
@ -0,0 +1,44 @@
|
||||
# 2005 Mar 16
|
||||
#
|
||||
# The author disclaims copyright to this source code. In place of
|
||||
# a legal notice, here is a blessing:
|
||||
#
|
||||
# May you do good and not evil.
|
||||
# May you find forgiveness for yourself and forgive others.
|
||||
# May you share freely, never taking more than you give.
|
||||
#
|
||||
#***********************************************************************
|
||||
# This file implements regression tests for SQLite library.
|
||||
#
|
||||
# This file implements tests for miscellanous features that were
|
||||
# left out of other test files.
|
||||
#
|
||||
# $Id: misc5.test,v 1.1 2005/03/17 03:15:40 drh Exp $
|
||||
|
||||
set testdir [file dirname $argv0]
|
||||
source $testdir/tester.tcl
|
||||
|
||||
# Build records using the MakeRecord opcode such that the size of the
|
||||
# header is at the transition point in the size of a varint.
|
||||
#
|
||||
# This test causes an assertion failure or a buffer overrun in version
|
||||
# 3.1.5 and earlier.
|
||||
#
|
||||
for {set i 120} {$i<140} {incr i} {
|
||||
do_test misc5-1.$i {
|
||||
catchsql {DROP TABLE t1}
|
||||
set sql1 {CREATE TABLE t1}
|
||||
set sql2 {INSERT INTO t1 VALUES}
|
||||
set sep (
|
||||
for {set j 0} {$j<$i} {incr j} {
|
||||
append sql1 ${sep}a$j
|
||||
append sql2 ${sep}$j
|
||||
set sep ,
|
||||
}
|
||||
append sql1 {);}
|
||||
append sql2 {);}
|
||||
execsql $sql1$sql2
|
||||
} {}
|
||||
}
|
||||
|
||||
finish_test
|
Reference in New Issue
Block a user