os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/descidx3.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 January 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.  The
sl@0
    12
# focus of this script is descending indices.
sl@0
    13
#
sl@0
    14
# $Id: descidx3.test,v 1.6 2008/03/19 00:21:31 drh 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
ifcapable !bloblit {
sl@0
    21
  finish_test
sl@0
    22
  return
sl@0
    23
}
sl@0
    24
db eval {PRAGMA legacy_file_format=OFF}
sl@0
    25
sl@0
    26
# This procedure sets the value of the file-format in file 'test.db'
sl@0
    27
# to $newval. Also, the schema cookie is incremented.
sl@0
    28
# 
sl@0
    29
proc set_file_format {newval} {
sl@0
    30
  hexio_write test.db 44 [hexio_render_int32 $newval]
sl@0
    31
  set schemacookie [hexio_get_int [hexio_read test.db 40 4]]
sl@0
    32
  incr schemacookie
sl@0
    33
  hexio_write test.db 40 [hexio_render_int32 $schemacookie]
sl@0
    34
  return {}
sl@0
    35
}
sl@0
    36
sl@0
    37
# This procedure returns the value of the file-format in file 'test.db'.
sl@0
    38
# 
sl@0
    39
proc get_file_format {{fname test.db}} {
sl@0
    40
  return [hexio_get_int [hexio_read $fname 44 4]]
sl@0
    41
}
sl@0
    42
sl@0
    43
# Verify that the file format starts as 4.
sl@0
    44
#
sl@0
    45
do_test descidx3-1.1 {
sl@0
    46
  execsql {
sl@0
    47
    CREATE TABLE t1(i INTEGER PRIMARY KEY,a,b,c,d);
sl@0
    48
    CREATE INDEX t1i1 ON t1(a DESC, b ASC, c DESC);
sl@0
    49
    CREATE INDEX t1i2 ON t1(b DESC, c ASC, d DESC);
sl@0
    50
  }
sl@0
    51
  get_file_format
sl@0
    52
} {4}
sl@0
    53
sl@0
    54
# Put some information in the table and verify that the descending
sl@0
    55
# index actually works.
sl@0
    56
#
sl@0
    57
do_test descidx3-2.1 {
sl@0
    58
  execsql {
sl@0
    59
    INSERT INTO t1 VALUES(1, NULL, NULL, NULL, NULL);
sl@0
    60
    INSERT INTO t1 VALUES(2, 2, 2, 2, 2);
sl@0
    61
    INSERT INTO t1 VALUES(3, 3, 3, 3, 3);
sl@0
    62
    INSERT INTO t1 VALUES(4, 2.5, 2.5, 2.5, 2.5);
sl@0
    63
    INSERT INTO t1 VALUES(5, -5, -5, -5, -5);
sl@0
    64
    INSERT INTO t1 VALUES(6, 'six', 'six', 'six', 'six');
sl@0
    65
    INSERT INTO t1 VALUES(7, x'77', x'77', x'77', x'77');
sl@0
    66
    INSERT INTO t1 VALUES(8, 'eight', 'eight', 'eight', 'eight');
sl@0
    67
    INSERT INTO t1 VALUES(9, x'7979', x'7979', x'7979', x'7979');
sl@0
    68
    SELECT count(*) FROM t1;
sl@0
    69
  }
sl@0
    70
} 9
sl@0
    71
do_test descidx3-2.2 {
sl@0
    72
  execsql {
sl@0
    73
    SELECT i FROM t1 ORDER BY a;
sl@0
    74
  }
sl@0
    75
} {1 5 2 4 3 8 6 7 9}
sl@0
    76
do_test descidx3-2.3 {
sl@0
    77
  execsql {
sl@0
    78
    SELECT i FROM t1 ORDER BY a DESC;
sl@0
    79
  }
sl@0
    80
} {9 7 6 8 3 4 2 5 1}
sl@0
    81
sl@0
    82
# The "natural" order for the index is decreasing
sl@0
    83
do_test descidx3-2.4 {
sl@0
    84
  execsql {
sl@0
    85
    SELECT i FROM t1 WHERE a<=x'7979';
sl@0
    86
  }
sl@0
    87
} {9 7 6 8 3 4 2 5}
sl@0
    88
do_test descidx3-2.5 {
sl@0
    89
  execsql {
sl@0
    90
    SELECT i FROM t1 WHERE a>-99;
sl@0
    91
  }
sl@0
    92
} {9 7 6 8 3 4 2 5}
sl@0
    93
sl@0
    94
# Even when all values of t1.a are the same, sorting by A returns
sl@0
    95
# the rows in reverse order because this the natural order of the
sl@0
    96
# index.
sl@0
    97
#
sl@0
    98
do_test descidx3-3.1 {
sl@0
    99
  execsql {
sl@0
   100
    UPDATE t1 SET a=1;
sl@0
   101
    SELECT i FROM t1 ORDER BY a;
sl@0
   102
  }
sl@0
   103
} {9 7 6 8 3 4 2 5 1}
sl@0
   104
do_test descidx3-3.2 {
sl@0
   105
  execsql {
sl@0
   106
    SELECT i FROM t1 WHERE a=1 AND b>0 AND b<'zzz'
sl@0
   107
  }
sl@0
   108
} {2 4 3 8 6}
sl@0
   109
do_test descidx3-3.3 {
sl@0
   110
  execsql {
sl@0
   111
    SELECT i FROM t1 WHERE b>0 AND b<'zzz'
sl@0
   112
  }
sl@0
   113
} {6 8 3 4 2}
sl@0
   114
do_test descidx3-3.4 {
sl@0
   115
  execsql {
sl@0
   116
    SELECT i FROM t1 WHERE a=1 AND b>-9999 AND b<x'ffffffff'
sl@0
   117
  }
sl@0
   118
} {5 2 4 3 8 6 7 9}
sl@0
   119
do_test descidx3-3.5 {
sl@0
   120
  execsql {
sl@0
   121
    SELECT i FROM t1 WHERE b>-9999 AND b<x'ffffffff'
sl@0
   122
  }
sl@0
   123
} {9 7 6 8 3 4 2 5}
sl@0
   124
sl@0
   125
ifcapable subquery {
sl@0
   126
  # If the subquery capability is not compiled in to the binary, then
sl@0
   127
  # the IN(...) operator is not available. Hence these tests cannot be 
sl@0
   128
  # run.
sl@0
   129
  do_test descidx3-4.1 {
sl@0
   130
    execsql {
sl@0
   131
      UPDATE t1 SET a=2 WHERE i<6;
sl@0
   132
      SELECT i FROM t1 WHERE a IN (1,2) AND b>0 AND b<'zzz';
sl@0
   133
    }
sl@0
   134
  } {8 6 2 4 3}
sl@0
   135
  do_test descidx3-4.2 {
sl@0
   136
    execsql {
sl@0
   137
      UPDATE t1 SET a=1;
sl@0
   138
      SELECT i FROM t1 WHERE a IN (1,2) AND b>0 AND b<'zzz';
sl@0
   139
    }
sl@0
   140
  } {2 4 3 8 6}
sl@0
   141
  do_test descidx3-4.3 {
sl@0
   142
    execsql {
sl@0
   143
      UPDATE t1 SET b=2;
sl@0
   144
      SELECT i FROM t1 WHERE a IN (1,2) AND b>0 AND b<'zzz';
sl@0
   145
    }
sl@0
   146
  } {9 7 6 8 3 4 2 5 1}
sl@0
   147
}
sl@0
   148
sl@0
   149
finish_test