sl@0
|
1 |
# 2007 Febuary 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 |
# This file implements regression tests for SQLite library.
|
sl@0
|
12 |
#
|
sl@0
|
13 |
# This file implements tests to verify that table column values
|
sl@0
|
14 |
# are pulled out of the database correctly.
|
sl@0
|
15 |
#
|
sl@0
|
16 |
# Long ago, the OP_Column opcode was sufficient to pull out the
|
sl@0
|
17 |
# value of a table column. But then we added the ALTER TABLE ADD COLUMN
|
sl@0
|
18 |
# feature. An added column might not actually exist in every row,
|
sl@0
|
19 |
# and so the OP_Column opcode has to contain a default value. Later
|
sl@0
|
20 |
# still we added a feature whereby a REAL value with no fractional
|
sl@0
|
21 |
# part is stored in the database file as an integer to save space.
|
sl@0
|
22 |
# After extracting the value, we have to call OP_RealAffinity to
|
sl@0
|
23 |
# convert it back to a REAL.
|
sl@0
|
24 |
#
|
sl@0
|
25 |
# The sqlite3ExprCodeGetColumn() routine was added to take care of
|
sl@0
|
26 |
# all of the complications above. The tests in this file attempt
|
sl@0
|
27 |
# to verify that sqlite3ExprCodeGetColumn() is used instead of a
|
sl@0
|
28 |
# raw OP_Column in all places where a table column is extracted from
|
sl@0
|
29 |
# the database.
|
sl@0
|
30 |
#
|
sl@0
|
31 |
# $Id: tkt2251.test,v 1.2 2007/09/12 17:01:45 danielk1977 Exp $
|
sl@0
|
32 |
|
sl@0
|
33 |
set testdir [file dirname $argv0]
|
sl@0
|
34 |
source $testdir/tester.tcl
|
sl@0
|
35 |
|
sl@0
|
36 |
ifcapable !altertable {
|
sl@0
|
37 |
finish_test
|
sl@0
|
38 |
return
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
# Create sample data. Verify that the default value and type of an added
|
sl@0
|
42 |
# column is correct for aggregates.
|
sl@0
|
43 |
do_test tkt2251-1.1 {
|
sl@0
|
44 |
execsql {
|
sl@0
|
45 |
CREATE TABLE t1(a INTEGER);
|
sl@0
|
46 |
INSERT INTO t1 VALUES(1);
|
sl@0
|
47 |
INSERT INTO t1 VALUES(1);
|
sl@0
|
48 |
INSERT INTO t1 VALUES(2);
|
sl@0
|
49 |
INSERT INTO t1 VALUES(9);
|
sl@0
|
50 |
INSERT INTO t1 VALUES(9);
|
sl@0
|
51 |
INSERT INTO t1 VALUES(9);
|
sl@0
|
52 |
INSERT INTO t1 VALUES(3);
|
sl@0
|
53 |
INSERT INTO t1 VALUES(2);
|
sl@0
|
54 |
ALTER TABLE t1 ADD COLUMN b REAL DEFAULT 4.0;
|
sl@0
|
55 |
SELECT avg(b), typeof(avg(b)) FROM t1;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
} {4.0 real}
|
sl@0
|
58 |
do_test tkt2251-1.2 {
|
sl@0
|
59 |
execsql {
|
sl@0
|
60 |
SELECT sum(b), typeof(sum(b)) FROM t1;
|
sl@0
|
61 |
}
|
sl@0
|
62 |
} {32.0 real}
|
sl@0
|
63 |
do_test tkt2251-1.3 {
|
sl@0
|
64 |
execsql {
|
sl@0
|
65 |
SELECT a, sum(b), typeof(sum(b)) FROM t1 GROUP BY a ORDER BY a;
|
sl@0
|
66 |
}
|
sl@0
|
67 |
} {1 8.0 real 2 8.0 real 3 4.0 real 9 12.0 real}
|
sl@0
|
68 |
|
sl@0
|
69 |
# Make sure that the REAL value comes out when values are accessed
|
sl@0
|
70 |
# by index.
|
sl@0
|
71 |
#
|
sl@0
|
72 |
do_test tkt2251-2.1 {
|
sl@0
|
73 |
execsql {
|
sl@0
|
74 |
SELECT b, typeof(b) FROM t1 WHERE a=3;
|
sl@0
|
75 |
}
|
sl@0
|
76 |
} {4.0 real}
|
sl@0
|
77 |
do_test tkt2251-2.2 {
|
sl@0
|
78 |
execsql {
|
sl@0
|
79 |
CREATE INDEX t1i1 ON t1(a,b);
|
sl@0
|
80 |
SELECT b, typeof(b) FROM t1 WHERE a=3;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
} {4.0 real}
|
sl@0
|
83 |
do_test tkt2251-2.3 {
|
sl@0
|
84 |
execsql {
|
sl@0
|
85 |
REINDEX;
|
sl@0
|
86 |
SELECT b, typeof(b) FROM t1 WHERE a=3;
|
sl@0
|
87 |
}
|
sl@0
|
88 |
} {4.0 real}
|
sl@0
|
89 |
|
sl@0
|
90 |
# Make sure the correct REAL value is used when copying from one
|
sl@0
|
91 |
# table to another.
|
sl@0
|
92 |
#
|
sl@0
|
93 |
do_test tkt2251-3.1 {
|
sl@0
|
94 |
execsql {
|
sl@0
|
95 |
CREATE TABLE t2(x,y);
|
sl@0
|
96 |
INSERT INTO t2 SELECT * FROM t1;
|
sl@0
|
97 |
SELECT y, typeof(y) FROM t2 WHERE x=3;
|
sl@0
|
98 |
}
|
sl@0
|
99 |
} {4.0 real}
|
sl@0
|
100 |
do_test tkt2251-3.2 {
|
sl@0
|
101 |
execsql {
|
sl@0
|
102 |
CREATE TABLE t3 AS SELECT * FROM t1;
|
sl@0
|
103 |
SELECT b, typeof(b) FROM t3 WHERE a=3;
|
sl@0
|
104 |
}
|
sl@0
|
105 |
} {4.0 real}
|
sl@0
|
106 |
|
sl@0
|
107 |
|
sl@0
|
108 |
finish_test
|