sl@0
|
1 |
# 2005 November 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 ticket #1536 is
|
sl@0
|
14 |
# fixed.
|
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 |
do_test tkt1536-1.1 {
|
sl@0
|
21 |
execsql {
|
sl@0
|
22 |
CREATE TABLE t1(
|
sl@0
|
23 |
a INTEGER PRIMARY KEY,
|
sl@0
|
24 |
b TEXT
|
sl@0
|
25 |
);
|
sl@0
|
26 |
INSERT INTO t1 VALUES(1,'01');
|
sl@0
|
27 |
SELECT typeof(a), typeof(b) FROM t1;
|
sl@0
|
28 |
}
|
sl@0
|
29 |
} {integer text}
|
sl@0
|
30 |
do_test tkt1536-1.2 {
|
sl@0
|
31 |
execsql {
|
sl@0
|
32 |
INSERT INTO t1(b) SELECT b FROM t1;
|
sl@0
|
33 |
SELECT b FROM t1 WHERE rowid=2;
|
sl@0
|
34 |
}
|
sl@0
|
35 |
} {01}
|
sl@0
|
36 |
|
sl@0
|
37 |
|
sl@0
|
38 |
finish_test
|