os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/shortread1.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# 2007 Sep 13
sl@0
     2
#
sl@0
     3
# The author disclaims copyright to this source code. In place of
sl@0
     4
# a legal notice, here is a blessing:
sl@0
     5
#
sl@0
     6
#    May you do good and not evil.
sl@0
     7
#    May you find forgiveness for yourself and forgive others.
sl@0
     8
#    May you share freely, never taking more than you give.
sl@0
     9
#
sl@0
    10
#***********************************************************************
sl@0
    11
#
sl@0
    12
# This file attempts to duplicate an error scenario seen on a
sl@0
    13
# customer system using version 3.2.2.  The problem appears to
sl@0
    14
# have been fixed (perhaps by accident) with check-in [3503].
sl@0
    15
# These tests will prevent an accidental recurrance.
sl@0
    16
#
sl@0
    17
# $Id: shortread1.test,v 1.1 2007/09/14 01:48:12 drh Exp $
sl@0
    18
#
sl@0
    19
sl@0
    20
set testdir [file dirname $argv0]
sl@0
    21
source $testdir/tester.tcl
sl@0
    22
sl@0
    23
do_test shortread1-1.1 {
sl@0
    24
  execsql {
sl@0
    25
    CREATE TABLE t1(a TEXT);
sl@0
    26
    BEGIN;
sl@0
    27
    INSERT INTO t1 VALUES(hex(randomblob(5000)));
sl@0
    28
    INSERT INTO t1 VALUES(hex(randomblob(100)));
sl@0
    29
    PRAGMA freelist_count;
sl@0
    30
  }
sl@0
    31
} {0}
sl@0
    32
do_test shortread1-1.2 {
sl@0
    33
  execsql {
sl@0
    34
    DELETE FROM t1 WHERE rowid=1;
sl@0
    35
    PRAGMA freelist_count;
sl@0
    36
  }
sl@0
    37
} {11}
sl@0
    38
do_test shortread1-1.3 {
sl@0
    39
  sqlite3_release_memory [expr {1024*9}]
sl@0
    40
  execsql {
sl@0
    41
    INSERT INTO t1 VALUES(hex(randomblob(5000)));
sl@0
    42
    PRAGMA freelist_count;
sl@0
    43
  }
sl@0
    44
} {0}
sl@0
    45
do_test shortread1-1.4 {
sl@0
    46
  execsql {
sl@0
    47
    COMMIT;
sl@0
    48
    SELECT count(*) FROM t1;
sl@0
    49
  }
sl@0
    50
} {2}
sl@0
    51
sl@0
    52
finish_test