summaryrefslogtreecommitdiff
path: root/test/alter4.test
diff options
context:
space:
mode:
authorHans-Christoph Steiner <hans@eds.org>2014-10-16 22:51:35 -0400
committerHans-Christoph Steiner <hans@eds.org>2014-10-16 22:51:35 -0400
commit569c6676a6ddb0ff73821d7693b5e18ddef809b9 (patch)
tree833538da7bba39105daff45e265aef386a200acd /test/alter4.test
parent08119c361d1181b3e8f1abb429236e488a664753 (diff)
Imported Upstream version 3.2.0upstream
Diffstat (limited to 'test/alter4.test')
-rw-r--r--test/alter4.test26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/alter4.test b/test/alter4.test
index cda4553..eaad37e 100644
--- a/test/alter4.test
+++ b/test/alter4.test
@@ -143,6 +143,11 @@ do_test alter4-2.6 {
alter table t1 add column d DEFAULT CURRENT_TIME;
}
} {1 {Cannot add a column with non-constant default}}
+do_test alter4-2.7 {
+ catchsql {
+ alter table t1 add column d default (-+1);
+ }
+} {1 {Cannot add a column with non-constant default}}
do_test alter4-2.99 {
execsql {
DROP TABLE t1;
@@ -329,4 +334,25 @@ do_test alter4-8.2 {
}
} [list $::sql]
+
+# Test that a default value equal to -1 multipied by the smallest possible
+# 64-bit integer is correctly converted to a real.
+do_execsql_test alter4-9.1 {
+ CREATE TABLE t5(
+ a INTEGER DEFAULT -9223372036854775808,
+ b INTEGER DEFAULT (-(-9223372036854775808))
+ );
+ INSERT INTO t5 DEFAULT VALUES;
+}
+
+do_execsql_test alter4-9.2 { SELECT typeof(a), a, typeof(b), b FROM t5; } {
+ integer -9223372036854775808
+ real 9.22337203685478e+18
+}
+
+do_execsql_test alter4-9.3 {
+ ALTER TABLE t5 ADD COLUMN c INTEGER DEFAULT (-(-9223372036854775808));
+ SELECT typeof(c), c FROM t5;
+} {real 9.22337203685478e+18}
+
finish_test