sl@0
|
1 |
# 2001 September 15
|
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 |
# The focus of this file is testing that LIMIT and OFFSET work for
|
sl@0
|
14 |
# unusual combinations SELECT statements.
|
sl@0
|
15 |
#
|
sl@0
|
16 |
# $Id: select8.test,v 1.1 2008/01/12 12:48:09 drh Exp $
|
sl@0
|
17 |
|
sl@0
|
18 |
set testdir [file dirname $argv0]
|
sl@0
|
19 |
source $testdir/tester.tcl
|
sl@0
|
20 |
|
sl@0
|
21 |
execsql {
|
sl@0
|
22 |
CREATE TABLE songs(songid, artist, timesplayed);
|
sl@0
|
23 |
INSERT INTO songs VALUES(1,'one',1);
|
sl@0
|
24 |
INSERT INTO songs VALUES(2,'one',2);
|
sl@0
|
25 |
INSERT INTO songs VALUES(3,'two',3);
|
sl@0
|
26 |
INSERT INTO songs VALUES(4,'three',5);
|
sl@0
|
27 |
INSERT INTO songs VALUES(5,'one',7);
|
sl@0
|
28 |
INSERT INTO songs VALUES(6,'two',11);
|
sl@0
|
29 |
}
|
sl@0
|
30 |
set result [execsql {
|
sl@0
|
31 |
SELECT DISTINCT artist,sum(timesplayed) AS total
|
sl@0
|
32 |
FROM songs
|
sl@0
|
33 |
GROUP BY LOWER(artist)
|
sl@0
|
34 |
}]
|
sl@0
|
35 |
puts result=$result
|
sl@0
|
36 |
do_test select8-1.1 {
|
sl@0
|
37 |
execsql {
|
sl@0
|
38 |
SELECT DISTINCT artist,sum(timesplayed) AS total
|
sl@0
|
39 |
FROM songs
|
sl@0
|
40 |
GROUP BY LOWER(artist)
|
sl@0
|
41 |
LIMIT 1 OFFSET 1
|
sl@0
|
42 |
}
|
sl@0
|
43 |
} [lrange $result 2 3]
|
sl@0
|
44 |
do_test select8-1.2 {
|
sl@0
|
45 |
execsql {
|
sl@0
|
46 |
SELECT DISTINCT artist,sum(timesplayed) AS total
|
sl@0
|
47 |
FROM songs
|
sl@0
|
48 |
GROUP BY LOWER(artist)
|
sl@0
|
49 |
LIMIT 2 OFFSET 1
|
sl@0
|
50 |
}
|
sl@0
|
51 |
} [lrange $result 2 5]
|
sl@0
|
52 |
do_test select8-1.3 {
|
sl@0
|
53 |
execsql {
|
sl@0
|
54 |
SELECT DISTINCT artist,sum(timesplayed) AS total
|
sl@0
|
55 |
FROM songs
|
sl@0
|
56 |
GROUP BY LOWER(artist)
|
sl@0
|
57 |
LIMIT -1 OFFSET 2
|
sl@0
|
58 |
}
|
sl@0
|
59 |
} [lrange $result 4 end]
|
sl@0
|
60 |
|
sl@0
|
61 |
|
sl@0
|
62 |
finish_test
|