os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/tkt2450.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 June 24
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 #2450 has been fixed.
sl@0
    13
#
sl@0
    14
# $Id: tkt2450.test,v 1.1 2007/06/24 06:32:18 danielk1977 Exp $
sl@0
    15
#
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 tkt2450-1 {
sl@0
    21
  execsql {
sl@0
    22
    CREATE TABLE "t a" ("""cb""");
sl@0
    23
    INSERT INTO "t a" ("""cb""") VALUES (1);
sl@0
    24
    SELECT """cb""" FROM "t a";
sl@0
    25
  }
sl@0
    26
} {1}
sl@0
    27
sl@0
    28
do_test tkt2450-2 {
sl@0
    29
  execsql {
sl@0
    30
    SELECT * FROM "t a";
sl@0
    31
  }
sl@0
    32
} {1}
sl@0
    33
sl@0
    34
do_test tkt2450-3 {
sl@0
    35
  execsql {
sl@0
    36
    SELECT "t a".* FROM "t a";
sl@0
    37
  }
sl@0
    38
} {1}
sl@0
    39
sl@0
    40
do_test tkt2450-3 {
sl@0
    41
  execsql {
sl@0
    42
    CREATE TABLE t1(a);
sl@0
    43
    INSERT INTO t1 VALUES(2);
sl@0
    44
    SELECT * FROM "t a", t1;
sl@0
    45
  }
sl@0
    46
} {1 2}
sl@0
    47
sl@0
    48
finish_test