]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Change a comment in sqlite3ota.h to make it clear that it is not possible to insert...
authordan <dan@noemail.net>
Thu, 5 Feb 2015 17:46:19 +0000 (17:46 +0000)
committerdan <dan@noemail.net>
Thu, 5 Feb 2015 17:46:19 +0000 (17:46 +0000)
FossilOrigin-Name: a5e86bea4ad51bbb988a2a2215961706894f4a02

ext/ota/ota10.test
ext/ota/sqlite3ota.h
manifest
manifest.uuid

index 02931a3bf5b5e571053d86a5c14a21f668ae06e3..52cc27a8f653e38ffd21c50990545ec0fcee88ec 100644 (file)
@@ -129,7 +129,6 @@ do_execsql_test 4.1 {
   INSERT INTO t2 VALUES(10, 10, 10);
   INSERT INTO t3 VALUES(10, 10, 10);
   INSERT INTO t4 VALUES(10, 10);
-
 }
 
 foreach {tn error ota} {
@@ -142,9 +141,11 @@ foreach {tn error ota} {
   4 {SQLITE_CONSTRAINT - NOT NULL constraint failed: t2.c} {
     INSERT INTO data_t2 VALUES(1, 'abc', NULL, 0);
   }
+
   5 {SQLITE_MISMATCH - datatype mismatch} {
     INSERT INTO data_t3 VALUES(1, 'abc', NULL, 0);
   }
+
   6 {SQLITE_CONSTRAINT - NOT NULL constraint failed: t4.b} {
     INSERT INTO data_t4 VALUES('a', NULL, 0);
   }
@@ -157,6 +158,10 @@ foreach {tn error ota} {
   9  {SQLITE_CONSTRAINT - NOT NULL constraint failed: t3.b} {
     INSERT INTO data_t3 VALUES(10, NULL, 10, '.x.');
   }
+
+  10 {SQLITE_MISMATCH - datatype mismatch} {
+    INSERT INTO data_t3 VALUES(1, 'abc', 'text', 0);
+  }
 } {
   set ota "
     CREATE TABLE data_t2(a, b, c, ota_control);
@@ -164,11 +169,19 @@ foreach {tn error ota} {
     CREATE TABLE data_t4(a, b, ota_control);
     $ota
   "
-  do_test 4.$tn {
+  do_test 4.2.$tn {
     list [catch { apply_ota $ota } msg] $msg
   } [list 1 $error]
 }
 
+do_test 4.3 {
+  set ota {
+    CREATE TABLE data_t3(a, b, c, ota_control);
+    INSERT INTO data_t3 VALUES(1, 'abc', '5', 0);
+    INSERT INTO data_t3 VALUES(1, 'abc', '-6.0', 0);
+  }
+  list [catch { apply_ota $ota } msg] $msg
+} {0 SQLITE_DONE}
 
 
 finish_test
index 0749ee9aea94efd63fbc5b18c2daf23ea290ddf9..e549022f9a01fa386ca7d5695493b90b27212904 100644 (file)
 ** other columns should be set to the values that make up the new record 
 ** to insert. 
 **
-** If the target database table has an INTEGER PRIMARY KEY and there are
-** one or more auxiliary indexes, it is not possible to insert a NULL value
-** into the IPK column. Attempting to do so results in an SQLITE_MISMATCH
-** error.
+** If the target database table has an INTEGER PRIMARY KEY, it is not 
+** possible to insert a NULL value into the IPK column. Attempting to 
+** do so results in an SQLITE_MISMATCH error.
 **
 ** For each row to DELETE from the target database as part of the OTA 
 ** update, the corresponding data_% table should contain a single record
index 3f58be9e624481794bf323638cee0cd78abba36b..40f75346a0afe1b2cce30d5a899bac9922b7c6b3 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Prevent\sota\supdates\sfrom\sviolating\sNOT\sNULL\sconstraints.\sAdd\sa\scomment\sto\sthe\s"limitations"\ssection\sof\ssqlite3ota.h\ssaying\sthat\sCHECK\sconstraints\sare\snot\senforced.
-D 2015-02-05T17:36:30.528
+C Change\sa\scomment\sin\ssqlite3ota.h\sto\smake\sit\sclear\sthat\sit\sis\snot\spossible\sto\sinsert\sa\sNULL\svalue\sinto\san\sINTEGER\sPRIMARY\sKEY\scolumn\susing\sota.
+D 2015-02-05T17:46:19.663
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 6b9e7677829aa94b9f30949656e27312aefb9a46
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -126,7 +126,7 @@ F ext/misc/wholenumber.c 784b12543d60702ebdd47da936e278aa03076212
 F ext/ota/README.txt 78d4a9f78f567d4bf826cf0f02df6254902562ca
 F ext/ota/ota.c c11a85af71dccc45976622fe7a51169a481caa91
 F ext/ota/ota1.test 719854e444dff2ead58ff6b62d8315954bd7762a
-F ext/ota/ota10.test 69bded736f5dd1e07b96e5c51c081e2fd051cb12
+F ext/ota/ota10.test 85e0f6e7964db5007590c1b299e75211ed4240d4
 F ext/ota/ota2.test 2829bc08ffbb71b605392a68fedfd554763356a7
 F ext/ota/ota3.test a77efbce7723332eb688d2b28bf18204fc9614d7
 F ext/ota/ota4.test 82434aa39c9acca6cd6317f6b0ab07b0ec6c2e7d
@@ -137,7 +137,7 @@ F ext/ota/ota8.test cd70e63a0c29c45c0906692827deafa34638feda
 F ext/ota/ota9.test d3eee95dd836824d07a22e5efcdb7bf6e869358b
 F ext/ota/otafault.test 508ba87c83d632670ac0f94371a465d4bb4d49dd
 F ext/ota/sqlite3ota.c 6f4f4e07d48ad51b745a5d30ba601a6895fd15ba
-F ext/ota/sqlite3ota.h 22423135fcdf7b242af8039b2ebf8437685e87c9
+F ext/ota/sqlite3ota.h b4c54c7df5d223f2ee40efa5ba363188daa3ad37
 F ext/rtree/README 6315c0d73ebf0ec40dedb5aa0e942bc8b54e3761
 F ext/rtree/rtree.c 14e6239434d4e3f65d3e90320713f26aa24e167f
 F ext/rtree/rtree.h 834dbcb82dc85b2481cde6a07cdadfddc99e9b9e
@@ -1255,7 +1255,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 50ecdfc443b51e3569c6add2fba5132f959c61cb
-R 39225d5cd1d4a3167fd9b3981c9a3ddd
+P 74e073dd604142212f3d3e1931065d124daabd80
+R e48869d5f9b5af46af5b0a2d65cd95eb
 U dan
-Z 95e5525c749de3fda07c16abd9286707
+Z 20d9f4ca66bd6d3a4217ce480de94529
index 189550920be4f91201db18577bd1f92e6c044b69..5e25ab7ccae87e2b260ad93468094f2c088fc90a 100644 (file)
@@ -1 +1 @@
-74e073dd604142212f3d3e1931065d124daabd80
\ No newline at end of file
+a5e86bea4ad51bbb988a2a2215961706894f4a02
\ No newline at end of file