os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/vtab_err.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 June 10
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
# $Id: vtab_err.test,v 1.8 2007/09/03 16:12:10 drh Exp $
sl@0
    13
sl@0
    14
set testdir [file dirname $argv0]
sl@0
    15
source $testdir/tester.tcl
sl@0
    16
sl@0
    17
ifcapable !vtab {
sl@0
    18
  finish_test
sl@0
    19
  return
sl@0
    20
}
sl@0
    21
sl@0
    22
sl@0
    23
sl@0
    24
unset -nocomplain echo_module_begin_fail
sl@0
    25
do_ioerr_test vtab_err-1 -tclprep {
sl@0
    26
  register_echo_module [sqlite3_connection_pointer db]
sl@0
    27
} -sqlbody {
sl@0
    28
  BEGIN;
sl@0
    29
  CREATE TABLE r(a PRIMARY KEY, b, c);
sl@0
    30
  CREATE VIRTUAL TABLE e USING echo(r);
sl@0
    31
  INSERT INTO e VALUES(1, 2, 3);
sl@0
    32
  INSERT INTO e VALUES('a', 'b', 'c');
sl@0
    33
  UPDATE e SET c = 10;
sl@0
    34
  DELETE FROM e WHERE a = 'a';
sl@0
    35
  COMMIT;
sl@0
    36
  BEGIN;
sl@0
    37
    CREATE TABLE r2(a, b, c);
sl@0
    38
    INSERT INTO r2 SELECT * FROM e;
sl@0
    39
    INSERT INTO e SELECT a||'x', b, c FROM r2;
sl@0
    40
  COMMIT;
sl@0
    41
}
sl@0
    42
sl@0
    43
ifcapable !memdebug {
sl@0
    44
   puts "Skipping vtab_err-2 tests: not compiled with -DSQLITE_MEMDEBUG..."
sl@0
    45
   finish_test
sl@0
    46
   return
sl@0
    47
}
sl@0
    48
source $testdir/malloc_common.tcl
sl@0
    49
sl@0
    50
sl@0
    51
do_malloc_test vtab_err-2 -tclprep { 
sl@0
    52
  register_echo_module [sqlite3_connection_pointer db]
sl@0
    53
} -sqlbody {
sl@0
    54
  BEGIN;
sl@0
    55
  CREATE TABLE r(a PRIMARY KEY, b, c);
sl@0
    56
  CREATE VIRTUAL TABLE e USING echo(r);
sl@0
    57
  INSERT INTO e VALUES(1, 2, 3);
sl@0
    58
  INSERT INTO e VALUES('a', 'b', 'c');
sl@0
    59
  UPDATE e SET c = 10;
sl@0
    60
  DELETE FROM e WHERE a = 'a';
sl@0
    61
  COMMIT;
sl@0
    62
  BEGIN;
sl@0
    63
    CREATE TABLE r2(a, b, c);
sl@0
    64
    INSERT INTO r2 SELECT * FROM e;
sl@0
    65
    INSERT INTO e SELECT a||'x', b, c FROM r2;
sl@0
    66
  COMMIT;
sl@0
    67
} 
sl@0
    68
sl@0
    69
sqlite3_memdebug_fail -1
sl@0
    70
sl@0
    71
finish_test