]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Clarify the meaning of the TEMP keyword on CREATE TABLE. (CVS 2559)
authordrh <drh@noemail.net>
Fri, 22 Jul 2005 23:56:49 +0000 (23:56 +0000)
committerdrh <drh@noemail.net>
Fri, 22 Jul 2005 23:56:49 +0000 (23:56 +0000)
FossilOrigin-Name: 1a573619f558d1d67775d17aabb9d704f82ad1a8

manifest
manifest.uuid
www/lang.tcl

index 421c7e6795db0a72b53b85bad7f532e386768ca3..96fe46131b17a597ac7719818c895d106df6de56 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Correct\sthe\sdocumentation\sto\sshow\sthat\ssqlite3_column_text()\sreturns\na\sNULL\spointer\s(not\san\sempty\sstring)\swhen\sthe\scolumn\svalue\sis\sNULL.\nThe\ssame\sgoes\sfor\ssqlite3_column_blob().\s\sTicket\s#1334.\s(CVS\s2558)
-D 2005-07-22T22:53:16
+C Clarify\sthe\smeaning\sof\sthe\sTEMP\skeyword\son\sCREATE\sTABLE.\s(CVS\s2559)
+D 2005-07-22T23:56:50
 F Makefile.in 22ea9c0fe748f591712d8fe3c6d972c6c173a165
 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -269,7 +269,7 @@ F www/faq.tcl 49f31a703f74c71ce66da646aaf18b07a5042672
 F www/fileformat.tcl 900c95b9633abc3dcfc384d9ddd8eb4876793059
 F www/formatchng.tcl 053ddb73646701353a5b1c9ca6274d5900739b45
 F www/index.tcl 9527f4eed69739cf5f81b3d75e0478d1c84d0a8a
-F www/lang.tcl 81310355cb9e12fe2b37071b54b3ad9d49290573
+F www/lang.tcl e0b9c55bf17a502b8f6f7731e5420278965b81a2
 F www/lockingv3.tcl f59b19d6c8920a931f096699d6faaf61c05db55f
 F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c
 F www/nulls.tcl ec35193f92485b87b90a994a01d0171b58823fcf
@@ -286,7 +286,7 @@ F www/tclsqlite.tcl 425be741b8ae664f55cb1ef2371aab0a75109cf9
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
 F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b
-P 103f8ccb9013689a480766ebffbf570d4aa8bac5
-R c4c1b015b27df10cfaa4a6eb48f50835
+P fd1e013a14710ed2ecabddedc0d110562cfdbfc2
+R c3a6d2b6548be7b005874f5369987f47
 U drh
-Z 3d55d319bdf70ffa0b770d1f9917d757
+Z 5560bd6b70c08f20b53ebb18f06f4772
index 63d7f1ab068c82132558d839b2c65483a3d02acd..00bc1c3172c3565e16b0fbd7fdefd130f1b8f4a2 100644 (file)
@@ -1 +1 @@
-fd1e013a14710ed2ecabddedc0d110562cfdbfc2
\ No newline at end of file
+1a573619f558d1d67775d17aabb9d704f82ad1a8
\ No newline at end of file
index 87b36370eff7ab0a9569a26d9f4b7eb1e897e798..c54c46af6235b52dce31d646cc09ee835be11bd2 100644 (file)
@@ -1,7 +1,7 @@
 #
 # Run this Tcl script to generate the lang-*.html files.
 #
-set rcsid {$Id: lang.tcl,v 1.93 2005/06/26 20:00:46 drh Exp $}
+set rcsid {$Id: lang.tcl,v 1.94 2005/07/22 23:56:50 drh Exp $}
 source common.tcl
 
 if {[llength $argv]>0} {
@@ -541,9 +541,10 @@ on automatic B-Tree key generation is available
 <a href="autoinc.html">separately</a>.</p>
 
 <p>If the "TEMP" or "TEMPORARY" keyword occurs in between "CREATE"
-and "TABLE" then the table that is created is only visible to the
-process that opened the database and is automatically deleted when
-the database is closed.  Any indices created on a temporary table
+and "TABLE" then the table that is created is only visible
+within that same database connection
+and is automatically deleted when
+the database connection is closed.  Any indices created on a temporary table
 are also temporary.  Temporary tables and indices are stored in a
 separate file distinct from the main database file.</p>