os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/trigger8.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
# 2006 February 27
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
# This file implements regression tests for SQLite library.
sl@0
    12
#
sl@0
    13
# This file implements tests to make sure abusively large triggers
sl@0
    14
# (triggers with 100s or 1000s of statements) work.
sl@0
    15
#
sl@0
    16
# $Id: $
sl@0
    17
sl@0
    18
set testdir [file dirname $argv0]
sl@0
    19
source $testdir/tester.tcl
sl@0
    20
ifcapable {!trigger} {
sl@0
    21
  finish_test
sl@0
    22
  return
sl@0
    23
}
sl@0
    24
sl@0
    25
# Set variable $nStatement to the number of statements to include in the
sl@0
    26
# body of the trigger. On a workstation with virtually unlimited memory, 
sl@0
    27
# use 10000. But on symbian, which allows each application at most a 32MB
sl@0
    28
# heap, use 1000.
sl@0
    29
#
sl@0
    30
set nStatement 10000
sl@0
    31
if {$tcl_platform(platform) == "symbian"} {
sl@0
    32
  set nStatement 1000
sl@0
    33
}
sl@0
    34
sl@0
    35
do_test trigger8-1.1 {
sl@0
    36
  execsql {
sl@0
    37
    CREATE TABLE t1(x);
sl@0
    38
    CREATE TABLE t2(y);
sl@0
    39
  }
sl@0
    40
  set sql "CREATE TRIGGER r${nStatement} AFTER INSERT ON t1 BEGIN\n"
sl@0
    41
  for {set i 0} {$i<$nStatement} {incr i} {
sl@0
    42
    append sql "  INSERT INTO t2 VALUES($i);\n"
sl@0
    43
  }
sl@0
    44
  append sql "END;"
sl@0
    45
  execsql $sql
sl@0
    46
  execsql {
sl@0
    47
    INSERT INTO t1 VALUES(5);
sl@0
    48
    SELECT count(*) FROM t2;
sl@0
    49
  }
sl@0
    50
} $nStatement
sl@0
    51
sl@0
    52
finish_test