os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/descidx2.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
# 2005 December 21
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: descidx2.test,v 1.5 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
db eval {PRAGMA legacy_file_format=OFF}
sl@0
    21
sl@0
    22
# This procedure sets the value of the file-format in file 'test.db'
sl@0
    23
# to $newval. Also, the schema cookie is incremented.
sl@0
    24
# 
sl@0
    25
proc set_file_format {newval} {
sl@0
    26
  hexio_write test.db 44 [hexio_render_int32 $newval]
sl@0
    27
  set schemacookie [hexio_get_int [hexio_read test.db 40 4]]
sl@0
    28
  incr schemacookie
sl@0
    29
  hexio_write test.db 40 [hexio_render_int32 $schemacookie]
sl@0
    30
  return {}
sl@0
    31
}
sl@0
    32
sl@0
    33
# This procedure returns the value of the file-format in file 'test.db'.
sl@0
    34
# 
sl@0
    35
proc get_file_format {{fname test.db}} {
sl@0
    36
  return [hexio_get_int [hexio_read $fname 44 4]]
sl@0
    37
}
sl@0
    38
sl@0
    39
sl@0
    40
# Verify that the file format starts as 4
sl@0
    41
#
sl@0
    42
do_test descidx2-1.1 {
sl@0
    43
  execsql {
sl@0
    44
    CREATE TABLE t1(a,b);
sl@0
    45
    CREATE INDEX i1 ON t1(b ASC);
sl@0
    46
  }
sl@0
    47
  get_file_format
sl@0
    48
} {4}
sl@0
    49
do_test descidx2-1.2 {
sl@0
    50
  execsql {
sl@0
    51
    CREATE INDEX i2 ON t1(a DESC);
sl@0
    52
  }
sl@0
    53
  get_file_format
sl@0
    54
} {4}
sl@0
    55
sl@0
    56
# Before adding any information to the database, set the file format
sl@0
    57
# back to three.  Then close and reopen the database.  With the file
sl@0
    58
# format set to three, SQLite should ignore the DESC argument on the
sl@0
    59
# index.
sl@0
    60
#
sl@0
    61
do_test descidx2-2.0 {
sl@0
    62
  set_file_format 3
sl@0
    63
  db close
sl@0
    64
  sqlite3 db test.db
sl@0
    65
  get_file_format
sl@0
    66
} {3}
sl@0
    67
sl@0
    68
# Put some information in the table and verify that the DESC
sl@0
    69
# on the index is ignored.
sl@0
    70
#
sl@0
    71
do_test descidx2-2.1 {
sl@0
    72
  execsql {
sl@0
    73
    INSERT INTO t1 VALUES(1,1);
sl@0
    74
    INSERT INTO t1 VALUES(2,2);
sl@0
    75
    INSERT INTO t1 SELECT a+2, a+2 FROM t1;
sl@0
    76
    INSERT INTO t1 SELECT a+4, a+4 FROM t1;
sl@0
    77
    SELECT b FROM t1 WHERE a>3 AND a<7;
sl@0
    78
  }
sl@0
    79
} {4 5 6}
sl@0
    80
do_test descidx2-2.2 {
sl@0
    81
  execsql {
sl@0
    82
    SELECT a FROM t1 WHERE b>3 AND b<7;
sl@0
    83
  }
sl@0
    84
} {4 5 6}
sl@0
    85
do_test descidx2-2.3 {
sl@0
    86
  execsql {
sl@0
    87
    SELECT b FROM t1 WHERE a>=3 AND a<7;
sl@0
    88
  }
sl@0
    89
} {3 4 5 6}
sl@0
    90
do_test descidx2-2.4 {
sl@0
    91
  execsql {
sl@0
    92
    SELECT b FROM t1 WHERE a>3 AND a<=7;
sl@0
    93
  }
sl@0
    94
} {4 5 6 7}
sl@0
    95
do_test descidx2-2.5 {
sl@0
    96
  execsql {
sl@0
    97
    SELECT b FROM t1 WHERE a>=3 AND a<=7;
sl@0
    98
  }
sl@0
    99
} {3 4 5 6 7}
sl@0
   100
do_test descidx2-2.6 {
sl@0
   101
  execsql {
sl@0
   102
    SELECT a FROM t1 WHERE b>=3 AND b<=7;
sl@0
   103
  }
sl@0
   104
} {3 4 5 6 7}
sl@0
   105
sl@0
   106
# This procedure executes the SQL.  Then it checks to see if the OP_Sort
sl@0
   107
# opcode was executed.  If an OP_Sort did occur, then "sort" is appended
sl@0
   108
# to the result.  If no OP_Sort happened, then "nosort" is appended.
sl@0
   109
#
sl@0
   110
# This procedure is used to check to make sure sorting is or is not
sl@0
   111
# occurring as expected.
sl@0
   112
#
sl@0
   113
proc cksort {sql} {
sl@0
   114
  set ::sqlite_sort_count 0
sl@0
   115
  set data [execsql $sql]
sl@0
   116
  if {$::sqlite_sort_count} {set x sort} {set x nosort}
sl@0
   117
  lappend data $x
sl@0
   118
  return $data
sl@0
   119
}
sl@0
   120
sl@0
   121
# Test sorting using a descending index.
sl@0
   122
#
sl@0
   123
do_test descidx2-3.1 {
sl@0
   124
  cksort {SELECT a FROM t1 ORDER BY a}
sl@0
   125
} {1 2 3 4 5 6 7 8 nosort}
sl@0
   126
do_test descidx2-3.2 {
sl@0
   127
  cksort {SELECT a FROM t1 ORDER BY a ASC}
sl@0
   128
} {1 2 3 4 5 6 7 8 nosort}
sl@0
   129
do_test descidx2-3.3 {
sl@0
   130
  cksort {SELECT a FROM t1 ORDER BY a DESC}
sl@0
   131
} {8 7 6 5 4 3 2 1 nosort}
sl@0
   132
do_test descidx2-3.4 {
sl@0
   133
  cksort {SELECT b FROM t1 ORDER BY a}
sl@0
   134
} {1 2 3 4 5 6 7 8 nosort}
sl@0
   135
do_test descidx2-3.5 {
sl@0
   136
  cksort {SELECT b FROM t1 ORDER BY a ASC}
sl@0
   137
} {1 2 3 4 5 6 7 8 nosort}
sl@0
   138
do_test descidx2-3.6 {
sl@0
   139
  cksort {SELECT b FROM t1 ORDER BY a DESC}
sl@0
   140
} {8 7 6 5 4 3 2 1 nosort}
sl@0
   141
do_test descidx2-3.7 {
sl@0
   142
  cksort {SELECT a FROM t1 ORDER BY b}
sl@0
   143
} {1 2 3 4 5 6 7 8 nosort}
sl@0
   144
do_test descidx2-3.8 {
sl@0
   145
  cksort {SELECT a FROM t1 ORDER BY b ASC}
sl@0
   146
} {1 2 3 4 5 6 7 8 nosort}
sl@0
   147
do_test descidx2-3.9 {
sl@0
   148
  cksort {SELECT a FROM t1 ORDER BY b DESC}
sl@0
   149
} {8 7 6 5 4 3 2 1 nosort}
sl@0
   150
do_test descidx2-3.10 {
sl@0
   151
  cksort {SELECT b FROM t1 ORDER BY b}
sl@0
   152
} {1 2 3 4 5 6 7 8 nosort}
sl@0
   153
do_test descidx2-3.11 {
sl@0
   154
  cksort {SELECT b FROM t1 ORDER BY b ASC}
sl@0
   155
} {1 2 3 4 5 6 7 8 nosort}
sl@0
   156
do_test descidx2-3.12 {
sl@0
   157
  cksort {SELECT b FROM t1 ORDER BY b DESC}
sl@0
   158
} {8 7 6 5 4 3 2 1 nosort}
sl@0
   159
sl@0
   160
do_test descidx2-3.21 {
sl@0
   161
  cksort {SELECT a FROM t1 WHERE a>3 AND a<8 ORDER BY a}
sl@0
   162
} {4 5 6 7 nosort}
sl@0
   163
do_test descidx2-3.22 {
sl@0
   164
  cksort {SELECT a FROM t1 WHERE a>3 AND a<8 ORDER BY a ASC}
sl@0
   165
} {4 5 6 7 nosort}
sl@0
   166
do_test descidx2-3.23 {
sl@0
   167
  cksort {SELECT a FROM t1 WHERE a>3 AND a<8 ORDER BY a DESC}
sl@0
   168
} {7 6 5 4 nosort}
sl@0
   169
do_test descidx2-3.24 {
sl@0
   170
  cksort {SELECT b FROM t1 WHERE a>3 AND a<8 ORDER BY a}
sl@0
   171
} {4 5 6 7 nosort}
sl@0
   172
do_test descidx2-3.25 {
sl@0
   173
  cksort {SELECT b FROM t1 WHERE a>3 AND a<8 ORDER BY a ASC}
sl@0
   174
} {4 5 6 7 nosort}
sl@0
   175
do_test descidx2-3.26 {
sl@0
   176
  cksort {SELECT b FROM t1 WHERE a>3 AND a<8 ORDER BY a DESC}
sl@0
   177
} {7 6 5 4 nosort}
sl@0
   178
sl@0
   179
finish_test