os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/tkt2820.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 Dec 4
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 is to test that ticket #2820 has been fixed.
sl@0
    13
# Ticket #2820 observes that a DROP TABLE statement that
sl@0
    14
# occurs while a query is in process will fail with a
sl@0
    15
# "database is locked" error, but the entry in the sqlite_master
sl@0
    16
# table will still be removed.  This is incorrect.  The
sl@0
    17
# entry in the sqlite_master table should persist when 
sl@0
    18
# the DROP fails due to an error.
sl@0
    19
#
sl@0
    20
# $Id: tkt2820.test,v 1.1 2007/12/04 16:54:53 drh Exp $
sl@0
    21
#
sl@0
    22
sl@0
    23
set testdir [file dirname $argv0]
sl@0
    24
source $testdir/tester.tcl
sl@0
    25
sl@0
    26
proc test_schema_change {testid init ddl res} {
sl@0
    27
  db close
sl@0
    28
  file delete -force test.db test.db-journal
sl@0
    29
  sqlite3 db test.db
sl@0
    30
  execsql $init
sl@0
    31
  do_test tkt2820-$testid.1 {
sl@0
    32
    set STMT [sqlite3_prepare db {SELECT * FROM sqlite_master} -1 DUMMY]
sl@0
    33
    sqlite3_step $STMT
sl@0
    34
  } {SQLITE_ROW}
sl@0
    35
#if {$testid==3} {execsql {PRAGMA vdbe_trace=ON}}
sl@0
    36
  do_test tkt2820-$testid.2 "catchsql [list $ddl]" \
sl@0
    37
       {1 {database table is locked}}
sl@0
    38
  do_test tkt2820-$testid.3 {
sl@0
    39
    sqlite3_finalize $STMT
sl@0
    40
    execsql {SELECT name FROM sqlite_master ORDER BY 1}
sl@0
    41
  } $res
sl@0
    42
  integrity_check tkt2820-$testid.4
sl@0
    43
  db close
sl@0
    44
  sqlite3 db test.db
sl@0
    45
  integrity_check tkt2820-$testid.5
sl@0
    46
}
sl@0
    47
sl@0
    48
test_schema_change 1 {
sl@0
    49
  CREATE TABLE t1(a);
sl@0
    50
} {
sl@0
    51
  DROP TABLE t1
sl@0
    52
} {t1}
sl@0
    53
test_schema_change 2 {
sl@0
    54
  CREATE TABLE t1(a);
sl@0
    55
  CREATE TABLE t2(b);
sl@0
    56
} {
sl@0
    57
  DROP TABLE t2
sl@0
    58
} {t1 t2}
sl@0
    59
test_schema_change 3 {
sl@0
    60
  CREATE TABLE t1(a);
sl@0
    61
  CREATE INDEX i1 ON t1(a);
sl@0
    62
} {
sl@0
    63
  DROP INDEX i1
sl@0
    64
} {i1 t1}
sl@0
    65
sl@0
    66
# We further observe that prior to the fix associated with ticket #2820,
sl@0
    67
# no statement journal would be created on an SQL statement that was run
sl@0
    68
# while a second statement was active, as long as we are in autocommit
sl@0
    69
# mode.  This is incorrect.
sl@0
    70
#
sl@0
    71
do_test tkt2820-4.1 {
sl@0
    72
  db close
sl@0
    73
  file delete -force test.db test.db-journal
sl@0
    74
  sqlite3 db test.db
sl@0
    75
  db eval {
sl@0
    76
    CREATE TABLE t1(a INTEGER PRIMARY KEY);
sl@0
    77
    INSERT INTO t1 VALUES(1);
sl@0
    78
    INSERT INTO t1 VALUES(2);
sl@0
    79
  }
sl@0
    80
sl@0
    81
  # The INSERT statement within the loop should fail on a
sl@0
    82
  # constraint violation on the second inserted row.  This
sl@0
    83
  # should cause the entire INSERT to rollback using a statement
sl@0
    84
  # journal.
sl@0
    85
  #
sl@0
    86
  db eval {SELECT name FROM sqlite_master} {
sl@0
    87
    catch {db eval {
sl@0
    88
      INSERT INTO t1 SELECT a+1 FROM t1 ORDER BY a DESC
sl@0
    89
    }}
sl@0
    90
  }
sl@0
    91
  db eval {SELECT a FROM t1 ORDER BY a}
sl@0
    92
} {1 2}
sl@0
    93
sl@0
    94
finish_test