os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/tkt3292.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
# 2008 August 12
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
# Specifically, it tests the behavior of the sqlite3VdbeRecordCompare()
sl@0
    13
# routine in cases where the rowid is 0 or 1 in file format 4
sl@0
    14
# (meaning that the rowid has type code 8 or 9 with zero bytes of
sl@0
    15
# data).  Ticket #3292.
sl@0
    16
#
sl@0
    17
# $Id: tkt3292.test,v 1.1 2008/08/13 14:07:41 drh Exp $
sl@0
    18
sl@0
    19
set testdir [file dirname $argv0]
sl@0
    20
source $testdir/tester.tcl
sl@0
    21
sl@0
    22
do_test tkt3292-1.1 {
sl@0
    23
  execsql {
sl@0
    24
    PRAGMA legacy_file_format=OFF;
sl@0
    25
    CREATE TABLE t1(a INTEGER PRIMARY KEY, b INT);
sl@0
    26
    INSERT INTO t1 VALUES(0, 1);
sl@0
    27
    INSERT INTO t1 VALUES(1, 1);
sl@0
    28
    INSERT INTO t1 VALUES(2, 1);
sl@0
    29
    CREATE INDEX i1 ON t1(b);
sl@0
    30
    SELECT * FROM t1 WHERE b>=1;
sl@0
    31
  }
sl@0
    32
} {0 1 1 1 2 1}
sl@0
    33
do_test tkt3292-1.2 {
sl@0
    34
  execsql {
sl@0
    35
    INSERT INTO t1 VALUES(3, 0);
sl@0
    36
    INSERT INTO t1 VALUES(4, 2);
sl@0
    37
    SELECT * FROM t1 WHERE b>=1;
sl@0
    38
  }
sl@0
    39
} {0 1 1 1 2 1 4 2}
sl@0
    40
sl@0
    41
sl@0
    42
do_test tkt3292-2.1 {
sl@0
    43
  execsql {
sl@0
    44
    CREATE TABLE t2(a INTEGER PRIMARY KEY, b, c, d);
sl@0
    45
    INSERT INTO t2 VALUES(0, 1, 'hello', x'012345');
sl@0
    46
    INSERT INTO t2 VALUES(1, 1, 'hello', x'012345');
sl@0
    47
    INSERT INTO t2 VALUES(2, 1, 'hello', x'012345');
sl@0
    48
    CREATE INDEX i2 ON t2(b,c,d);
sl@0
    49
    SELECT a FROM t2 WHERE b=1 AND c='hello' AND d>=x'012345';
sl@0
    50
  }
sl@0
    51
} {0 1 2}
sl@0
    52
do_test tkt3292-2.2 {
sl@0
    53
  execsql {
sl@0
    54
    INSERT INTO t2 VALUES(3, 1, 'hello', x'012344');
sl@0
    55
    INSERT INTO t2 VALUES(4, 1, 'hello', x'012346');
sl@0
    56
    SELECT a FROM t2 WHERE b=1 AND c='hello' AND d>=x'012345';
sl@0
    57
  }
sl@0
    58
} {0 1 2 4}
sl@0
    59
sl@0
    60
sl@0
    61
finish_test