42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
|
# 2021-08-18
|
||
|
#
|
||
|
# The author disclaims copyright to this source code. In place of
|
||
|
# a legal notice, here is a blessing:
|
||
|
#
|
||
|
# May you do good and not evil.
|
||
|
# May you find forgiveness for yourself and forgive others.
|
||
|
# May you share freely, never taking more than you give.
|
||
|
#
|
||
|
#***********************************************************************
|
||
|
#
|
||
|
# This file implements regression tests for SQLite library. The
|
||
|
# focus of this file is testing STRICT tables.
|
||
|
#
|
||
|
|
||
|
set testdir [file dirname $argv0]
|
||
|
source $testdir/tester.tcl
|
||
|
set testprefix strict1
|
||
|
|
||
|
# STRICT tables have on a limited number of allowed datatypes.
|
||
|
#
|
||
|
do_catchsql_test strict1-1.1 {
|
||
|
CREATE TABLE t1(a) STRICT;
|
||
|
} {1 {unknown datatype for t1.a: ""}}
|
||
|
do_catchsql_test strict1-1.2 {
|
||
|
CREATE TABLE t1(a PRIMARY KEY) STRICT, WITHOUT ROWID;
|
||
|
} {1 {unknown datatype for t1.a: ""}}
|
||
|
do_catchsql_test strict1-1.3 {
|
||
|
CREATE TABLE t1(a PRIMARY KEY) WITHOUT ROWID, STRICT;
|
||
|
} {1 {unknown datatype for t1.a: ""}}
|
||
|
do_catchsql_test strict1-1.4 {
|
||
|
CREATE TABLE t1(a BANJO PRIMARY KEY) WITHOUT ROWID, STRICT;
|
||
|
} {1 {unknown datatype for t1.a: "BANJO"}}
|
||
|
do_catchsql_test strict1-1.5 {
|
||
|
CREATE TABLE t1(a TEXT PRIMARY KEY, b INT, c INTEGER, d REAL, e BLOB, f DATE) strict;
|
||
|
} {1 {unknown datatype for t1.f: "DATE"}}
|
||
|
do_catchsql_test strict1-1.6 {
|
||
|
CREATE TABLE t1(a TEXT PRIMARY KEY, b INT, c INTEGER, d REAL, e BLOB, f TEXT(50)) WITHOUT ROWID, STRICT;
|
||
|
} {1 {unknown datatype for t1.f: "TEXT(50)"}}
|
||
|
|
||
|
finish_test
|