author | sl@SLION-WIN7.fritz.box |
Fri, 15 Jun 2012 03:10:57 +0200 | |
changeset 0 | bde4ae8d615e |
permissions | -rw-r--r-- |
sl@0 | 1 |
# 2005 August 18 |
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 file is testing corner cases of the DEFAULT syntax |
sl@0 | 13 |
# on table definitions. |
sl@0 | 14 |
# |
sl@0 | 15 |
# $Id: default.test,v 1.2 2005/08/20 03:03:04 drh Exp $ |
sl@0 | 16 |
# |
sl@0 | 17 |
|
sl@0 | 18 |
set testdir [file dirname $argv0] |
sl@0 | 19 |
source $testdir/tester.tcl |
sl@0 | 20 |
|
sl@0 | 21 |
ifcapable bloblit { |
sl@0 | 22 |
do_test default-1.1 { |
sl@0 | 23 |
execsql { |
sl@0 | 24 |
CREATE TABLE t1( |
sl@0 | 25 |
a INTEGER, |
sl@0 | 26 |
b BLOB DEFAULT x'6869' |
sl@0 | 27 |
); |
sl@0 | 28 |
INSERT INTO t1(a) VALUES(1); |
sl@0 | 29 |
SELECT * from t1; |
sl@0 | 30 |
} |
sl@0 | 31 |
} {1 hi} |
sl@0 | 32 |
} |
sl@0 | 33 |
do_test default-1.2 { |
sl@0 | 34 |
execsql { |
sl@0 | 35 |
CREATE TABLE t2( |
sl@0 | 36 |
x INTEGER, |
sl@0 | 37 |
y INTEGER DEFAULT NULL |
sl@0 | 38 |
); |
sl@0 | 39 |
INSERT INTO t2(x) VALUES(1); |
sl@0 | 40 |
SELECT * FROM t2; |
sl@0 | 41 |
} |
sl@0 | 42 |
} {1 {}} |
sl@0 | 43 |
do_test default-1.3 { |
sl@0 | 44 |
catchsql { |
sl@0 | 45 |
CREATE TABLE t3( |
sl@0 | 46 |
x INTEGER, |
sl@0 | 47 |
y INTEGER DEFAULT (max(x,5)) |
sl@0 | 48 |
) |
sl@0 | 49 |
} |
sl@0 | 50 |
} {1 {default value of column [y] is not constant}} |
sl@0 | 51 |
|
sl@0 | 52 |
finish_test |