]> git.ipfire.org Git - thirdparty/sqlite.git/log
thirdparty/sqlite.git
20 years agoFix minor problems with the SSE hooks. (CVS 2483)
danielk1977 [Thu, 26 May 2005 12:37:29 +0000 (12:37 +0000)] 
Fix minor problems with the SSE hooks. (CVS 2483)

FossilOrigin-Name: 3516ca29da5f28adc1fd4da42ca5551d154b6320

20 years agoRearrange code so that SSE can invoke the collation factory. (CVS 2482)
danielk1977 [Wed, 25 May 2005 10:45:10 +0000 (10:45 +0000)] 
Rearrange code so that SSE can invoke the collation factory. (CVS 2482)

FossilOrigin-Name: ea061d2ed3b25908fcfcb88e35ba612e5832a217

20 years agoSplit main.c into two files to make building without the parser easier. (CVS 2481)
danielk1977 [Wed, 25 May 2005 04:11:56 +0000 (04:11 +0000)] 
Split main.c into two files to make building without the parser easier. (CVS 2481)

FossilOrigin-Name: d50915fafbde6859a5c2c3fc5cc9b99553b54e21

20 years agoRemove the config.h file from the build. Ticket #1224. (CVS 2480)
drh [Tue, 24 May 2005 20:19:57 +0000 (20:19 +0000)] 
Remove the config.h file from the build.  Ticket #1224. (CVS 2480)

FossilOrigin-Name: 3e64f1ab417f371e9875915303b898c5b45f0807

20 years agoMove a few things around to make building without the parser easier. (CVS 2479)
danielk1977 [Tue, 24 May 2005 12:01:00 +0000 (12:01 +0000)] 
Move a few things around to make building without the parser easier. (CVS 2479)

FossilOrigin-Name: 5fadb464eb77b4b998d8555f83401769960ea904

20 years agoThe REGEXP operator is recognized. It tries to invoke a function named
drh [Mon, 23 May 2005 17:26:51 +0000 (17:26 +0000)] 
The REGEXP operator is recognized.  It tries to invoke a function named
regexp() which does not exist in the native build.  But users who want to
can add an appropriate regexp() function using sqlite3_create_function(). (CVS 2478)

FossilOrigin-Name: 42a626ace126f730f33ecb6c41ac5679d6766a31

20 years agoMake sure that the use of a double-quoted string literal does not trick
drh [Mon, 23 May 2005 15:06:39 +0000 (15:06 +0000)] 
Make sure that the use of a double-quoted string literal does not trick
the optimizer into using a correlated subquery when a static
subquery would suffice. (CVS 2477)

FossilOrigin-Name: ef4059e3afa1a61a9e59df00cdfedc57d8df9fec

20 years agoRetain the error string if an error is generated by SSE during a VACUUM. (CVS 2476)
danielk1977 [Mon, 23 May 2005 13:00:57 +0000 (13:00 +0000)] 
Retain the error string if an error is generated by SSE during a VACUUM. (CVS 2476)

FossilOrigin-Name: f7b76d02e003faf0310b87949d3cb0f38062853f

20 years agoAdd pFetch variable (used by SSE) to sqlite3 structure. (CVS 2475)
danielk1977 [Mon, 23 May 2005 04:51:01 +0000 (04:51 +0000)] 
Add pFetch variable (used by SSE) to sqlite3 structure. (CVS 2475)

FossilOrigin-Name: 2a8ac869671b627d4d01655bbce7a781bc74af44

20 years agoThe cache_size pragma should not reset the synchronous pragma. Ticket #1260. (CVS...
drh [Sun, 22 May 2005 20:30:39 +0000 (20:30 +0000)] 
The cache_size pragma should not reset the synchronous pragma.  Ticket #1260. (CVS 2474)

FossilOrigin-Name: 2db2b32f269062b006ae5c4a302d116cdab8f9ec

20 years agoNever user a pointer to standard library routines malloc() and free().
drh [Sun, 22 May 2005 20:12:37 +0000 (20:12 +0000)] 
Never user a pointer to standard library routines malloc() and free().
This rule is to
work around limitations of MSVC and the _fastcall calling convention.
Ticket #1256. (CVS 2473)

FossilOrigin-Name: a39c446726099e4915a1ad72c019d3c2cfe065bb

20 years agoFix a memory leak. Ticket #1259. (CVS 2472)
drh [Sun, 22 May 2005 19:21:51 +0000 (19:21 +0000)] 
Fix a memory leak.  Ticket #1259. (CVS 2472)

FossilOrigin-Name: 254ac2213e695ead065ba3807d5d285046212fe1

20 years agoAdd hook to register SSE user-functions. (CVS 2471)
danielk1977 [Sun, 22 May 2005 10:44:34 +0000 (10:44 +0000)] 
Add hook to register SSE user-functions. (CVS 2471)

FossilOrigin-Name: 20bd303e8c6f7e69ba82ce1dc3041ea4e02d55cf

20 years agoAllow schema objects beginning with sqlite_ to be created if the
danielk1977 [Sun, 22 May 2005 06:49:56 +0000 (06:49 +0000)] 
Allow schema objects beginning with sqlite_ to be created if the
SQLITE_WriteSchema flag is set. (CVS 2470)

FossilOrigin-Name: afc8ce42b6c321463f6451727d0f85c490c8e9ae

20 years agoSpeed improvements as described by tickets #1257 and #1258. These changes
drh [Sat, 21 May 2005 18:32:18 +0000 (18:32 +0000)] 
Speed improvements as described by tickets #1257 and #1258.  These changes
help some but are nowhere near the 23% claimed in the tickets. (CVS 2469)

FossilOrigin-Name: 3fa177c54a8589dcfa0bfad0ca124cb73b363f18

20 years agoMore structure rearrangements for additional size reductions. Ticket #1253. (CVS...
drh [Sat, 21 May 2005 02:48:08 +0000 (02:48 +0000)] 
More structure rearrangements for additional size reductions.  Ticket #1253. (CVS 2468)

FossilOrigin-Name: 6b6e525b294a5bbf8a5e56a2f60aa096865aedbd

20 years agoReorder structure fields to reduce code footprint. Ticket #1253. Need
drh [Fri, 20 May 2005 20:11:20 +0000 (20:11 +0000)] 
Reorder structure fields to reduce code footprint.  Ticket #1253.  Need
to do more of this. (CVS 2467)

FossilOrigin-Name: 27025613bc2970b0c23e08fbe5251103794ab6cb

20 years agoDo not allow the pagesize of :memory: databases to be changed. Silently
drh [Fri, 20 May 2005 20:01:55 +0000 (20:01 +0000)] 
Do not allow the pagesize of :memory: databases to be changed.  Silently
ignore PRAGMA page_size=N requests for :memory: databases.
Ticket #1144 and #1252. (CVS 2466)

FossilOrigin-Name: f29a1d882623d8ff14f35a302aef63a16388bcb3

20 years agoComment changes in vdbeapi.c (CVS 2465)
drh [Fri, 20 May 2005 19:36:01 +0000 (19:36 +0000)] 
Comment changes in vdbeapi.c (CVS 2465)

FossilOrigin-Name: ab7805fb2fb29abc1311e23a93ba03883db7b30e

20 years agoFix memory leaks in Tcl user function interface. (CVS 2464)
danielk1977 [Fri, 20 May 2005 09:40:55 +0000 (09:40 +0000)] 
Fix memory leaks in Tcl user function interface. (CVS 2464)

FossilOrigin-Name: f5d9a8061a6d650f207669b121243abb8dd28be2

20 years agoAlways use a more specific type (P3_FUNCDEF) instead of P3_POINTER as the
danielk1977 [Thu, 19 May 2005 08:42:59 +0000 (08:42 +0000)] 
Always use a more specific type (P3_FUNCDEF) instead of P3_POINTER as the
P3 type of a vdbe instruction. (CVS 2463)

FossilOrigin-Name: 79a41674be2c0a1990598428d8b1e9d09d3ea389

20 years agoFix an array index that is out of bounds. Ticket #1251. (CVS 2462)
drh [Thu, 19 May 2005 01:26:14 +0000 (01:26 +0000)] 
Fix an array index that is out of bounds.  Ticket #1251. (CVS 2462)

FossilOrigin-Name: bcf87e4d1681d6c2856e716aae0135c2b14989d8

20 years agoProvide a compile-time parameter to set the default file creation permissions
drh [Tue, 17 May 2005 11:25:31 +0000 (11:25 +0000)] 
Provide a compile-time parameter to set the default file creation permissions
under Unix.  Ticket #1247. (CVS 2461)

FossilOrigin-Name: bfa55bec3233eed899606c309773f441857605ae

20 years agoFix an uninitialized variable. Ticket #1244. (CVS 2460)
drh [Mon, 16 May 2005 22:37:54 +0000 (22:37 +0000)] 
Fix an uninitialized variable.  Ticket #1244. (CVS 2460)

FossilOrigin-Name: 582cb77d72031f78b560f67222a0e6ce5e3ca3f2

20 years agoModify documentation to explain default value of "pragma synchronous".
danielk1977 [Mon, 16 May 2005 02:13:17 +0000 (02:13 +0000)] 
Modify documentation to explain default value of "pragma synchronous".
No code changes. (CVS 2459)

FossilOrigin-Name: 453014421e9a739b47d4c28b0342454e4c686199

20 years agoChange to the lemon parser suggested by Geert Janssen. Appears to have no
drh [Wed, 11 May 2005 14:28:14 +0000 (14:28 +0000)] 
Change to the lemon parser suggested by Geert Janssen.  Appears to have no
impact on SQLite. (CVS 2458)

FossilOrigin-Name: 6fda60083f258a4943c859d768ea7142de831594

20 years agoFix a typo in the CREATE TABLE documentation. (CVS 2457)
drh [Tue, 10 May 2005 16:11:41 +0000 (16:11 +0000)] 
Fix a typo in the CREATE TABLE documentation. (CVS 2457)

FossilOrigin-Name: 748771a8ad7f175e49f253d0c1ace3fc55814418

20 years agoTiming fix in the default busy handler. (CVS 2456)
drh [Fri, 6 May 2005 22:05:56 +0000 (22:05 +0000)] 
Timing fix in the default busy handler. (CVS 2456)

FossilOrigin-Name: 76090ed84c73a9b9c7099e2986390ca8967128f4

20 years agoPatch to fix an alignment problem on sparc. Ticket #1234. (CVS 2455)
drh [Thu, 5 May 2005 18:14:13 +0000 (18:14 +0000)] 
Patch to fix an alignment problem on sparc.  Ticket #1234. (CVS 2455)

FossilOrigin-Name: 240cce10d4b9d595a267e392ce322472b10f286d

20 years agoFix a datatype in trigger6.test that changed due to the previous check-in. (CVS 2454)
drh [Thu, 5 May 2005 11:04:50 +0000 (11:04 +0000)] 
Fix a datatype in trigger6.test that changed due to the previous check-in. (CVS 2454)

FossilOrigin-Name: c2af7d2c947bcec507087cc3a1e5b21e6322e4cd

20 years agoIn the TCL interface, user-defined functions preserve the datatype returned
drh [Thu, 5 May 2005 10:30:29 +0000 (10:30 +0000)] 
In the TCL interface, user-defined functions preserve the datatype returned
by the Tcl procedure. (CVS 2453)

FossilOrigin-Name: 99dcba1fb1fdaa2b8bc85046b00c14f6af596e8f

20 years agoMake sure all data structures have 8-byte alignment - necessary for the
drh [Tue, 3 May 2005 12:30:33 +0000 (12:30 +0000)] 
Make sure all data structures have 8-byte alignment - necessary for the
sparc architecture and helpful on other 64-bit platforms.  Ticket #1232.
Also update some comments in build.c. (CVS 2452)

FossilOrigin-Name: d9418851cebc1605d8d62aad7987c0d61a905e81

20 years agoRemove the psAligned value from the BTree structure - the pageSize is now
drh [Sun, 1 May 2005 22:52:42 +0000 (22:52 +0000)] 
Remove the psAligned value from the BTree structure - the pageSize is now
always aligned to an 8-byte boundary.  Add comments on a confusing bit
of code.  Ticket #1231. (CVS 2451)

FossilOrigin-Name: 535523e1be692adc940d256a7b3d23c62a4cc947

20 years agoPrevent a segfault described by ticket #1229. (CVS 2450)
drh [Fri, 29 Apr 2005 02:10:00 +0000 (02:10 +0000)] 
Prevent a segfault described by ticket #1229. (CVS 2450)

FossilOrigin-Name: 0667eae9a97059125a77bd90452d19dc17c30a12

20 years agoAdd hooks for the SSE extension. (CVS 2449)
drh [Thu, 28 Apr 2005 19:03:37 +0000 (19:03 +0000)] 
Add hooks for the SSE extension. (CVS 2449)

FossilOrigin-Name: 90f4cf2ad57309dbd20954fc7fd60859bc44bcf4

20 years agoEnhancements to allow for extensions. (CVS 2448)
drh [Thu, 28 Apr 2005 17:18:48 +0000 (17:18 +0000)] 
Enhancements to allow for extensions. (CVS 2448)

FossilOrigin-Name: 6863703abcb2bf31d65792d4de9ae20aba2eadb5

20 years agoFix an array index bug in the default busy callback handler.
drh [Thu, 28 Apr 2005 12:06:05 +0000 (12:06 +0000)] 
Fix an array index bug in the default busy callback handler.
Ticket #1198. (CVS 2447)

FossilOrigin-Name: 3cc14b7606681d04eb56003a0996322e3b3bdc73

20 years agoRemove some vestigal code. Add the experimental sqlite3_transfer_bindings()
drh [Fri, 22 Apr 2005 02:38:37 +0000 (02:38 +0000)] 
Remove some vestigal code.  Add the experimental sqlite3_transfer_bindings()
API. (CVS 2446)

FossilOrigin-Name: 88b39436f00d645cdb6333a7413c698c42227d3f

20 years agoCorrectly store large integers. Ticket #1212. (CVS 2445)
drh [Fri, 15 Apr 2005 12:04:34 +0000 (12:04 +0000)] 
Correctly  store large integers.  Ticket #1212. (CVS 2445)

FossilOrigin-Name: 00e20690bb8cc6522c9c48f36f0c3336ae007827

20 years agoAdded tests to exercise delete, insert, and update triggers on views (tkt #1169)...
kwel [Fri, 8 Apr 2005 19:48:27 +0000 (19:48 +0000)] 
Added tests to exercise delete, insert, and update triggers on views (tkt #1169) (CVS 2444)

FossilOrigin-Name: 6cd19ddcba5fbea1be04b44699c911294618e948

20 years agoFixed stack growth in update trigger on views (tkt #1169) (CVS 2443)
kwel [Fri, 8 Apr 2005 16:08:36 +0000 (16:08 +0000)] 
Fixed stack growth in update trigger on views (tkt #1169) (CVS 2443)

FossilOrigin-Name: 99fcd5561b539010b7e76cad7815bb2350541f00

20 years agoFixed stack growth in delete trigger on views (tkt #1169) (CVS 2442)
kwel [Fri, 8 Apr 2005 16:07:47 +0000 (16:07 +0000)] 
Fixed stack growth in delete trigger on views (tkt #1169) (CVS 2442)

FossilOrigin-Name: 1a757ba13292577d01bd7b66811bcfd6748b9f7e

20 years agoApply Tcl 'nullvalue' patch from Stefan Finzel. (CVS 2441)
danielk1977 [Sun, 3 Apr 2005 23:54:43 +0000 (23:54 +0000)] 
Apply Tcl 'nullvalue' patch from Stefan Finzel. (CVS 2441)

FossilOrigin-Name: 9906ae37b9be684b615a1190cf8798513baa799a

20 years agoDocumentation updates. (CVS 2440)
drh [Fri, 1 Apr 2005 16:29:12 +0000 (16:29 +0000)] 
Documentation updates. (CVS 2440)

FossilOrigin-Name: 7e6f688d468099a6e62e405086c9172459d43e3f

20 years agoMake the ORDER BY clause return equal elements in the same order they were
drh [Fri, 1 Apr 2005 10:47:40 +0000 (10:47 +0000)] 
Make the ORDER BY clause return equal elements in the same order they were
seen (a stable sort).  It was returning them in exactly the reverse order. (CVS 2439)

FossilOrigin-Name: e8391491a68018406e30c2a699a4cab9e0de092c

20 years agoAdd a "const" declaration to a constant. Fix a typo in a comment. (CVS 2438)
drh [Thu, 31 Mar 2005 22:26:19 +0000 (22:26 +0000)] 
Add a "const" declaration to a constant.  Fix a typo in a comment. (CVS 2438)

FossilOrigin-Name: 67aaa269068ea6b6f784979c09b3deb091928563

20 years agoUpdate comments and documentation to give the true maximum page size as 32K,
drh [Thu, 31 Mar 2005 21:02:45 +0000 (21:02 +0000)] 
Update comments and documentation to give the true maximum page size as 32K,
not 64K as was previously (and erroneously) reported.  Ticket #1194. (CVS 2437)

FossilOrigin-Name: 58dd436b6572d38ea67960b8d08a0ca4359602f0

20 years agoMake sure integer primary keys larger than 2^31 are handled
drh [Thu, 31 Mar 2005 18:40:04 +0000 (18:40 +0000)] 
Make sure integer primary keys larger than 2^31 are handled
properly.  Ticket #1188. (CVS 2436)

FossilOrigin-Name: 1d04c2ab299430959b8a193d4679cbc4c0be31a4

20 years agoFix a memory leak in the TCL bindings. (CVS 2435)
drh [Thu, 31 Mar 2005 18:26:20 +0000 (18:26 +0000)] 
Fix a memory leak in the TCL bindings. (CVS 2435)

FossilOrigin-Name: c31ea6332f53d361be864554b83662d3fc0d52f7

20 years agoFix a problem with threads and the global database list in main.c. (CVS 2434)
danielk1977 [Tue, 29 Mar 2005 23:34:58 +0000 (23:34 +0000)] 
Fix a problem with threads and the global database list in main.c. (CVS 2434)

FossilOrigin-Name: 4aa05d2251b0cf6323ea695330de9ccf7e071bed

20 years agoVersion 3.2.1 (CVS 2433)
drh [Tue, 29 Mar 2005 13:37:46 +0000 (13:37 +0000)] 
Version 3.2.1 (CVS 2433)

FossilOrigin-Name: 844f01af726f5e478a4ef32f39be9f20360a0d96

20 years agoChange the date of the 3.2.1 release. (CVS 2432)
drh [Tue, 29 Mar 2005 13:19:01 +0000 (13:19 +0000)] 
Change the date of the 3.2.1 release. (CVS 2432)

FossilOrigin-Name: afa42e2fa4487e4671ee481df09659a447f9c2a8

20 years agoFix minor display bugs in sqlite3_analyzer. (CVS 2431)
drh [Tue, 29 Mar 2005 13:18:16 +0000 (13:18 +0000)] 
Fix minor display bugs in sqlite3_analyzer. (CVS 2431)

FossilOrigin-Name: d89aaba5b0fe6b2787531cadd7806ab5a3fdeb98

20 years agoFix a C++-ism in the code. (CVS 2430)
drh [Tue, 29 Mar 2005 13:17:45 +0000 (13:17 +0000)] 
Fix a C++-ism in the code. (CVS 2430)

FossilOrigin-Name: 312587acf9e94e1d12390a9a0206c9464815e8d7

20 years agoChange 'stack' to the more descriptive 'no-push' in vdbe.c. (CVS 2429)
danielk1977 [Tue, 29 Mar 2005 13:07:00 +0000 (13:07 +0000)] 
Change 'stack' to the more descriptive 'no-push' in vdbe.c. (CVS 2429)

FossilOrigin-Name: 7e54d3c7289c091d449844d21b923e553f1d1f5f

20 years agoReduce the space allocated for the runtime virtual machine stack. (CVS 2428)
danielk1977 [Tue, 29 Mar 2005 08:26:13 +0000 (08:26 +0000)] 
Reduce the space allocated for the runtime virtual machine stack. (CVS 2428)

FossilOrigin-Name: 7d6818da33a87076d1faf35ffc15a3aada0533b3

20 years agoAdd the SQLITE_OMIT_TEMPDB compile time macro. (CVS 2427)
danielk1977 [Tue, 29 Mar 2005 03:10:59 +0000 (03:10 +0000)] 
Add the SQLITE_OMIT_TEMPDB compile time macro. (CVS 2427)

FossilOrigin-Name: c41d55443c2dd532147962b87f542fb7d37075fd

20 years agoFix segfault due to exception handler being run with uninitialised variable. (CVS...
danielk1977 [Tue, 29 Mar 2005 02:54:03 +0000 (02:54 +0000)] 
Fix segfault due to exception handler being run with uninitialised variable. (CVS 2426)

FossilOrigin-Name: 78df3d040443414ae5b440eeabc0c8c205ab311d

20 years agoFix another memory leak in the pager. (CVS 2425)
drh [Mon, 28 Mar 2005 18:04:27 +0000 (18:04 +0000)] 
Fix another memory leak in the pager. (CVS 2425)

FossilOrigin-Name: 4ca11ca015d798655170593c1b76d312185d6ed2

20 years agoIncrement version number and update documentation in preparation for
drh [Mon, 28 Mar 2005 16:56:09 +0000 (16:56 +0000)] 
Increment version number and update documentation in preparation for
version 3.2.1. (CVS 2424)

FossilOrigin-Name: b0409b93108096a81245170887d60d076d639c60

20 years agoChanges to alter3.test to allow it to work with a codec. (CVS 2423)
drh [Mon, 28 Mar 2005 16:50:22 +0000 (16:50 +0000)] 
Changes to alter3.test to allow it to work with a codec. (CVS 2423)

FossilOrigin-Name: 9e856bab2bbb77004b049827b4a275aa6c48096b

20 years agoModifications to reduce memory consumption. (CVS 2422)
danielk1977 [Mon, 28 Mar 2005 08:44:07 +0000 (08:44 +0000)] 
Modifications to reduce memory consumption. (CVS 2422)

FossilOrigin-Name: 0fd5ce4eefdc429ce0493f15d0dba9e8a3a0b0e2

20 years agoFix some memory leaks that occur after a malloc failure. (CVS 2421)
drh [Mon, 28 Mar 2005 03:39:55 +0000 (03:39 +0000)] 
Fix some memory leaks that occur after a malloc failure. (CVS 2421)

FossilOrigin-Name: bcb5d72ef146b1019c72220701d385c7b0b5d0bd

20 years agoUse SQL function substr() correctly from ALTER TABLE code. Ticket #1182. (CVS 2420)
danielk1977 [Mon, 28 Mar 2005 00:07:16 +0000 (00:07 +0000)] 
Use SQL function substr() correctly from ALTER TABLE code. Ticket #1182. (CVS 2420)

FossilOrigin-Name: ccb9f4022b3ccb1cc2ab001628fd38becfbf8efe

20 years agoCorrectly allocate new columns array in ALTER TABLE .. ADD COLUMN. Ticket #1183....
danielk1977 [Sun, 27 Mar 2005 01:56:30 +0000 (01:56 +0000)] 
Correctly allocate new columns array in ALTER TABLE .. ADD COLUMN. Ticket #1183. (CVS 2419)

FossilOrigin-Name: 3c86e63389b286a49106d8d7009cc63e3914d40f

20 years agoFix a typo in vdbeInt.h. This was potentially a serious mistake, but we got
drh [Wed, 23 Mar 2005 01:48:47 +0000 (01:48 +0000)] 
Fix a typo in vdbeInt.h.  This was potentially a serious mistake, but we got
lucky and it is benign. (CVS 2418)

FossilOrigin-Name: f0d64dc8aa65b25af551e6e5f07746bd77c8112a

20 years agoFix typo in the formatchng.html document. (CVS 2417)
drh [Wed, 23 Mar 2005 01:05:14 +0000 (01:05 +0000)] 
Fix typo in the formatchng.html document. (CVS 2417)

FossilOrigin-Name: 35ace66f3ebefd4cd1455c923199511ab3b72bb6

20 years agoVersion 3.2.0 (CVS 2415)
drh [Mon, 21 Mar 2005 19:51:30 +0000 (19:51 +0000)] 
Version 3.2.0 (CVS 2415)

FossilOrigin-Name: debf40e8ffa35406685ec027ced1f147ef0487df

20 years agoDocumentation changes prior to the release of version 3.2.0. (CVS 2416)
drh [Mon, 21 Mar 2005 19:48:00 +0000 (19:48 +0000)] 
Documentation changes prior to the release of version 3.2.0. (CVS 2416)

FossilOrigin-Name: cc5a2c8e5d2ddb87f3bce6efaf3e62d7fa00d9ca

20 years agoAdd function to recover from a malloc() failure. (CVS 2414)
danielk1977 [Mon, 21 Mar 2005 04:04:02 +0000 (04:04 +0000)] 
Add function to recover from a malloc() failure. (CVS 2414)

FossilOrigin-Name: 1f9d10d7965c95d1e35f64cf4c3f128adabd41f2

20 years agoAssorted fixes to the handling of various malloc() failures. (CVS 2413)
danielk1977 [Mon, 21 Mar 2005 03:53:38 +0000 (03:53 +0000)] 
Assorted fixes to the handling of various malloc() failures. (CVS 2413)

FossilOrigin-Name: e7844a01c248e8d9204ea9214bec84c81dc07f32

20 years agoUpdate docs to say that the default_synchronous pragma has been removed.
drh [Mon, 21 Mar 2005 01:31:36 +0000 (01:31 +0000)] 
Update docs to say that the default_synchronous pragma has been removed.
Ticket #1049. (CVS 2412)

FossilOrigin-Name: 21012bba176035ff69f860936794a6c2a8eac9df

20 years agofix typo in CREATE VIEW documentation. Ticket #1135. (CVS 2411)
drh [Mon, 21 Mar 2005 01:24:02 +0000 (01:24 +0000)] 
fix typo in CREATE VIEW documentation.  Ticket #1135. (CVS 2411)

FossilOrigin-Name: 38897a509a98188a06c49c01a71ddf8835c7b607

20 years agoFix an infinite loop in the code generator for INSERT. Ticket #1140. (CVS 2410)
drh [Mon, 21 Mar 2005 01:20:58 +0000 (01:20 +0000)] 
Fix an infinite loop in the code generator for INSERT.  Ticket #1140. (CVS 2410)

FossilOrigin-Name: 876d09d9145775956913e975c29e81d7553839ac

20 years agoREADME file updated to suggest running "make install". Ticket #1168. (CVS 2409)
drh [Mon, 21 Mar 2005 00:47:18 +0000 (00:47 +0000)] 
README file updated to suggest running "make install".  Ticket #1168. (CVS 2409)

FossilOrigin-Name: b48784cf65420da5ccdf779504e3c0b5c0f2471d

20 years agoAllow the character "T" between date and time in ISO-8601 date/time formats.
drh [Mon, 21 Mar 2005 00:43:44 +0000 (00:43 +0000)] 
Allow the character "T" between date and time in ISO-8601 date/time formats.
Ticket #1170. (CVS 2408)

FossilOrigin-Name: 2bf88daa57b01216c7bbe67972f479ee12be1193

20 years agoImproved support for cygwin. Ticket #1165. (CVS 2407)
drh [Mon, 21 Mar 2005 00:36:08 +0000 (00:36 +0000)] 
Improved support for cygwin.  Ticket #1165. (CVS 2407)

FossilOrigin-Name: fcb5cee440ab49e39b62b177cbb04ab0b061a477

20 years agoFix a formatting error in the syntax documentation. Ticket #1145. (CVS 2406)
drh [Mon, 21 Mar 2005 00:28:24 +0000 (00:28 +0000)] 
Fix a formatting error in the syntax documentation.  Ticket #1145. (CVS 2406)

FossilOrigin-Name: 59892be6a4c344cb6654f76e4b3b9db96d52f132

20 years agoFix for ticket #1167 (CVS 2405)
drh [Sun, 20 Mar 2005 23:18:57 +0000 (23:18 +0000)] 
Fix for ticket #1167 (CVS 2405)

FossilOrigin-Name: d9aa0aa9ae2ca0dec976ba2ae4cd7047132be45b

20 years agoDo not attempt to read the journal file on windows because manditory locking
drh [Sun, 20 Mar 2005 22:54:56 +0000 (22:54 +0000)] 
Do not attempt to read the journal file on windows because manditory locking
on windows will not allow it.  Ticket #1166. (CVS 2404)

FossilOrigin-Name: 1865e0d81c827cc879dde96c6a9f42e740b6a560

20 years agoMore changes for ticket #1171 after additional analysis. (CVS 2403)
drh [Sun, 20 Mar 2005 22:47:56 +0000 (22:47 +0000)] 
More changes for ticket #1171 after additional analysis. (CVS 2403)

FossilOrigin-Name: 0471d6b86fd67c22da832beb280b31305c5aa812

20 years agoTentative fix for ticket #1171. More research and testing needed. (CVS 2402)
drh [Sun, 20 Mar 2005 19:10:12 +0000 (19:10 +0000)] 
Tentative fix for ticket #1171.  More research and testing needed. (CVS 2402)

FossilOrigin-Name: f0a39cee78472b93cce5304fc255285ddea7d2bf

20 years agoMore documentation updates. (CVS 2401)
drh [Sat, 19 Mar 2005 15:10:45 +0000 (15:10 +0000)] 
More documentation updates. (CVS 2401)

FossilOrigin-Name: f065b6102db838d48f1a1a9ed68b2a09cd440cf8

20 years agoPreparations for the release of version 3.2.0. (CVS 2400)
drh [Sat, 19 Mar 2005 14:45:48 +0000 (14:45 +0000)] 
Preparations for the release of version 3.2.0. (CVS 2400)

FossilOrigin-Name: 90a00e90663749e5d1f8e28709dfbe981f8afc8b

20 years agoFix typos in documentation. (CVS 2399)
drh [Sat, 19 Mar 2005 03:41:57 +0000 (03:41 +0000)] 
Fix typos in documentation. (CVS 2399)

FossilOrigin-Name: aee888ca58a7d059ff3ccb26bf0924550d54ab1c

20 years agoUpdates to comments and documentation. No changes to code. (CVS 2398)
drh [Sat, 19 Mar 2005 01:41:21 +0000 (01:41 +0000)] 
Updates to comments and documentation.  No changes to code. (CVS 2398)

FossilOrigin-Name: e53c77268cd16802bd8c6fc4c6cd5280dc12f9c1

20 years agoRemove unused code from util.c. Enhance the trace output in os_unix.c. (CVS 2397)
drh [Fri, 18 Mar 2005 14:03:15 +0000 (14:03 +0000)] 
Remove unused code from util.c.  Enhance the trace output in os_unix.c. (CVS 2397)

FossilOrigin-Name: f2f31919fdd181c79b86f849d46c60f1ed7a0db1

20 years agoFixed a typo in alter3.test. (CVS 2396)
drh [Thu, 17 Mar 2005 12:33:14 +0000 (12:33 +0000)] 
Fixed a typo in alter3.test. (CVS 2396)

FossilOrigin-Name: 698be25d3e8f0eb2b5a4c6c7d20343b3c8a06134

20 years agoDon't run the tests in alter3.test if SQLITE_OMIT_ALTERTABLE is defined. (CVS 2395)
danielk1977 [Thu, 17 Mar 2005 07:00:55 +0000 (07:00 +0000)] 
Don't run the tests in alter3.test if SQLITE_OMIT_ALTERTABLE is defined. (CVS 2395)

FossilOrigin-Name: 800fb3bf06f73af53af57f5b172c85406af374ad

20 years agoUpdate to keyword list for ALTER TABLE ... ADD COLUMN command. (CVS 2394)
danielk1977 [Thu, 17 Mar 2005 05:06:28 +0000 (05:06 +0000)] 
Update to keyword list for ALTER TABLE ... ADD COLUMN command. (CVS 2394)

FossilOrigin-Name: 173e26961faec434cd4e4abc1dcb238ab9a942b8

20 years agoAdd the ALTER TABLE ... ADD COLUMN command. (CVS 2393)
danielk1977 [Thu, 17 Mar 2005 05:03:38 +0000 (05:03 +0000)] 
Add the ALTER TABLE ... ADD COLUMN command. (CVS 2393)

FossilOrigin-Name: 94185dd4f7e2e941c74a521488d1212a75927218

20 years agoVersion 3.1.6 (CVS 2392)
drh [Thu, 17 Mar 2005 04:01:24 +0000 (04:01 +0000)] 
Version 3.1.6 (CVS 2392)

FossilOrigin-Name: 6a3f4e4be6f294f756ed882f220f579252735f3f

20 years agoStrengthen an assert() in vdbe.c. (CVS 2391)
drh [Thu, 17 Mar 2005 03:52:47 +0000 (03:52 +0000)] 
Strengthen an assert() in vdbe.c. (CVS 2391)

FossilOrigin-Name: 3f45cf3516be9919fe2c0673d6f445fa83d42126

20 years agoPreparing for the release of 3.1.6. (CVS 2390)
drh [Thu, 17 Mar 2005 03:33:16 +0000 (03:33 +0000)] 
Preparing for the release of 3.1.6. (CVS 2390)

FossilOrigin-Name: 45cbf27e8079754941225e87867711504bf3d60c

20 years agoFix a bug in the calculation of the table record header size.
drh [Thu, 17 Mar 2005 03:15:40 +0000 (03:15 +0000)] 
Fix a bug in the calculation of the table record header size.
Ticket #1163. (CVS 2389)

FossilOrigin-Name: bf82a04ff7c24a38d45721b3fae69d88d6e83149

20 years agoFix some memory leaks that can occur if a memory allocation fails. (CVS 2388)
danielk1977 [Wed, 16 Mar 2005 12:15:20 +0000 (12:15 +0000)] 
Fix some memory leaks that can occur if a memory allocation fails. (CVS 2388)

FossilOrigin-Name: 9a358fc33d726d0b5782bf65b50f61f2bd096d56

20 years agoWhen creating a new database, delete any preexisting journal that might be
drh [Tue, 15 Mar 2005 17:09:30 +0000 (17:09 +0000)] 
When creating a new database, delete any preexisting journal that might be
left over from a prior database with the same name.  Ticket #1152. (CVS 2387)

FossilOrigin-Name: 856e2ec9688affbfe496cf184f460b18408e3dc0

20 years agoAllow the database name in a DETACH statement to be quoted.
drh [Tue, 15 Mar 2005 02:04:12 +0000 (02:04 +0000)] 
Allow the database name in a DETACH statement to be quoted.
Ticket #1151. (CVS 2386)

FossilOrigin-Name: 24e887735256499e58dabe90463524d9e6eb08ce

20 years agoBe more aggressive about using the busy handler. Ticket #1159. (CVS 2385)
drh [Mon, 14 Mar 2005 02:01:49 +0000 (02:01 +0000)] 
Be more aggressive about using the busy handler.  Ticket #1159. (CVS 2385)

FossilOrigin-Name: 644c6398e52481e5dda87671e1c196b26b1e4990

20 years agoFix typo in documentation. (CVS 2384)
drh [Sat, 12 Mar 2005 18:03:58 +0000 (18:03 +0000)] 
Fix typo in documentation. (CVS 2384)

FossilOrigin-Name: 78012246fc1c1fe844d192cfff69a736e388ce7a