os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/tkt2817.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 December 02 
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
# Specifically, it tests that bug 2817 is fixed.
sl@0
    14
#
sl@0
    15
# $Id: tkt2817.test,v 1.2 2008/07/12 14:52:21 drh Exp $
sl@0
    16
sl@0
    17
set testdir [file dirname $argv0]
sl@0
    18
source $testdir/tester.tcl
sl@0
    19
sl@0
    20
do_test tkt2817-1.0 {
sl@0
    21
  execsql {
sl@0
    22
    CREATE TEMP TABLE tbl(a, b, c);
sl@0
    23
    -- INSERT INTO tbl VALUES(1, 'abc', 'def');
sl@0
    24
    -- INSERT INTO tbl VALUES(2, 'ghi', 'jkl');
sl@0
    25
  }
sl@0
    26
} {}
sl@0
    27
do_test tkt2817-1.1 {
sl@0
    28
  execsql {
sl@0
    29
    CREATE TABLE main.tbl(a, b, c); 
sl@0
    30
    CREATE INDEX main.tbli ON tbl(a, b, c);
sl@0
    31
    INSERT INTO main.tbl SELECT a, b, c FROM temp.tbl;
sl@0
    32
  }
sl@0
    33
} {}
sl@0
    34
sl@0
    35
# When bug #2817 existed, this test was failing.
sl@0
    36
#
sl@0
    37
integrity_check tkt2817-1.2
sl@0
    38
sl@0
    39
# So was this one.
sl@0
    40
#
sl@0
    41
db close
sl@0
    42
sqlite3 db test.db
sl@0
    43
integrity_check tkt2817-1.3
sl@0
    44
sl@0
    45
sl@0
    46
# These tests - tkt2817-2.* - are the same as the previous block, except
sl@0
    47
# for the fact that the temp-table and the main table do not share the
sl@0
    48
# same name. #2817 did not cause a problem with these tests.
sl@0
    49
#
sl@0
    50
db close
sl@0
    51
file delete -force test.db
sl@0
    52
sqlite3 db test.db
sl@0
    53
do_test tkt2817-2.0 {
sl@0
    54
  execsql {
sl@0
    55
    CREATE TEMP TABLE tmp(a, b, c);
sl@0
    56
    INSERT INTO tmp VALUES(1, 'abc', 'def');
sl@0
    57
    INSERT INTO tmp VALUES(2, 'ghi', 'jkl');
sl@0
    58
  }
sl@0
    59
} {}
sl@0
    60
do_test tkt2817-2.1 {
sl@0
    61
  execsql {
sl@0
    62
    CREATE TABLE main.tbl(a, b, c); 
sl@0
    63
    CREATE INDEX main.tbli ON tbl(a, b, c);
sl@0
    64
    INSERT INTO main.tbl SELECT a, b, c FROM temp.tmp;
sl@0
    65
  }
sl@0
    66
} {}
sl@0
    67
integrity_check tkt2817-2.2
sl@0
    68
db close
sl@0
    69
sqlite3 db test.db
sl@0
    70
integrity_check tkt2817-2.3
sl@0
    71
sl@0
    72
finish_test