drh
eec983e175
Minor change to main.c so that it will compile with GCC 2.96. (CVS 1325)
...
FossilOrigin-Name: 1a09a1ada199b76926c64bd79ad39d6d50a75011
2004-05-08 10:11:36 +00:00
danielk1977
4adee20fcb
Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the
...
library links again. It doesn't work yet, due to changes in the btree layer
calling convention. (CVS 1324)
FossilOrigin-Name: 8af6474c49263ae26216dff9465b33f76b500cf4
2004-05-08 08:23:19 +00:00
drh
9b17127705
More bug fixes in btree.c. (CVS 1323)
...
FossilOrigin-Name: 2d64cba38c0f5fffa18cb30c4c448278837de49d
2004-05-08 02:03:22 +00:00
drh
c39e000bbf
More bug fixes in btree.c. (CVS 1322)
...
FossilOrigin-Name: a80939ef714ec884950b4a1f4f809ffa37fdfa59
2004-05-07 23:50:57 +00:00
drh
de64713041
The btree.c module compiles and links and passes some tests. Many tests
...
still fail, though. (CVS 1321)
FossilOrigin-Name: d394b2b217d4d728f9eba397262bf9d36195719e
2004-05-07 17:57:49 +00:00
drh
a34b676483
New btree.c module compiles and links. (CVS 1320)
...
FossilOrigin-Name: dcd6b55f932a7ade4ad058534651e198b56370ad
2004-05-07 13:30:42 +00:00
drh
4fc0fb4358
Trying to synchronize the test3.c module with the new btree.c code. (CVS 1319)
...
FossilOrigin-Name: 7fd1a660b0607b7c36de1278724521cbea72af0c
2004-05-07 02:26:28 +00:00
danielk1977
697e6e27b8
Fix compilation problem in test5.c (CVS 1318)
...
FossilOrigin-Name: 49c3c86c17bcd8132216791d7a1a17e2c6256206
2004-05-07 01:50:37 +00:00
danielk1977
998b56c351
Add code to convert between the various supported unicode encoding schemes.
...
Untested at this point. (CVS 1315)
FossilOrigin-Name: 71260ff7f7030f56c292b43f83a213c65c9a184e
2004-05-06 23:37:52 +00:00
drh
23e11cab7d
Update test3.c to work with the new btree.c API. (CVS 1314)
...
FossilOrigin-Name: bfb3234dc60c9152fdf0a16b887089365443f5ed
2004-05-04 17:27:28 +00:00
drh
a5d14fe7c5
Added template for the utf.c file containing conversion routines. (CVS 1313)
...
FossilOrigin-Name: 89b42c468f437003f74a1785370e75b2585fa9e2
2004-05-04 15:00:46 +00:00
drh
9102529d8c
Incremental btree.c changes. (CVS 1312)
...
FossilOrigin-Name: fdc629dbbf974024215969e0bd3def4597258812
2004-05-03 19:49:32 +00:00
drh
4b70f11aea
Changes to btree for the new file format are mostly complete. Still need
...
to test and debug. (CVS 1311)
FossilOrigin-Name: 0eee3b5cd400e9548437632ec1dfe625a3fca9cf
2004-05-02 21:12:19 +00:00
drh
8856d6aad2
Sync all version 3 changes. (CVS 1309)
...
FossilOrigin-Name: 51892d6cdc739bb049fdfce8301354312167c181
2004-04-29 14:42:46 +00:00
drh
3aac2dd7bc
Pager tests working. (CVS 1308)
...
FossilOrigin-Name: 910067a200c4b25b5d813a84146673d3d1c80952
2004-04-26 14:10:20 +00:00
drh
9e572e608f
Begin modifying the BTree code for the new version-3 file format.
...
This is a work-in-progress.
As of this check-in, SQLite will not build. (CVS 1306)
FossilOrigin-Name: ce0bbd3a7159e12c86c5cde6571d6668b234827b
2004-04-23 23:43:10 +00:00
drh
cc83b6e071
Add an extra assert() to lemon.c to make debugging easier. Ticket #692 . (CVS 1305)
...
FossilOrigin-Name: 818bdba5dc25cda56716fdda1781a3d4ecb3a111
2004-04-23 23:38:42 +00:00
drh
226e5f9de7
Branch version_2. Code for version 3 is on the trunk. (CVS 1303)
...
FossilOrigin-Name: db84ddf5408d1efe9e0e5eef2f5d875c9e2c8e99
2004-04-23 23:19:59 +00:00
drh
1bdd9b5787
Get the temp_store and default_temp_store pragmas working. Update the
...
documentation. Also fix a malloc problem that popped up during the regression
testing. (CVS 1302)
FossilOrigin-Name: 7ace576215367101904677bd69951755ee9cb1a1
2004-04-23 17:04:44 +00:00
rdc
932ee8f4bb
Fix windows DLL section of Makefile.in for use with build dir. (CVS 1301)
...
FossilOrigin-Name: 1e84f70fb98755651e0c04dc2cf0114e2e6fe39c
2004-03-26 23:16:31 +00:00
drh
d888544275
Change the ".database" command in the shell to allocate more characters to
...
the database name and filename. (CVS 1300)
FossilOrigin-Name: 85238f06902851dd5085395501a0ab2d6a2b9814
2004-03-17 23:42:12 +00:00
drh
8b8891bf0a
Fix a VDBE stack overflow that occurs when the left-hand side of an IN
...
expression is NULL and the result is stored on the stack rather than used
to control a jump. Ticket #668 . (CVS 1299)
FossilOrigin-Name: fc7a7975b03c144c2db3566facd008d3701c735e
2004-03-17 23:32:08 +00:00
drh
276fd588d8
The sqlite_trace() API only works for commands started by the user, not for
...
SQL commands run during initialization. (CVS 1298)
FossilOrigin-Name: 0a12473c4ae370ec34f1f431dd6d7d6ffa25d41a
2004-03-17 18:44:45 +00:00
dougcurrie
a8804c82b8
Makefile.in and sqlite.def changes for encode and non-toplevel build; ticket #667 (CVS 1297)
...
FossilOrigin-Name: 72205a371ce5be4eac0a77d5d2fa8ccb23bb988f
2004-03-16 21:49:49 +00:00
drh
6ff15d0c49
Prototypes for sqlite_encode_binary() and sqlite_decode_binary() added
...
to sqlite.h. (CVS 1296)
FossilOrigin-Name: 359f0e787ff2d4d10fd23059e2ce99670e93f66a
2004-03-14 22:12:34 +00:00
drh
6da834a8b4
Make sqlite_encode_binary() and sqlite_decode_binary() an official part of
...
the library. (CVS 1295)
FossilOrigin-Name: 786fe545560ec6c42bb0e344345031f425bf177a
2004-03-14 22:11:59 +00:00
drh
371cb93a2a
Updates to the architecture document. (CVS 1294)
...
FossilOrigin-Name: c661cc81b6981c536c107f40525ad9783b11ea82
2004-03-14 11:57:58 +00:00
drh
6e17529e97
Fix the min/max optimizer so that it works when the FROM clause is a
...
subquery. Ticket #658 . (CVS 1293)
FossilOrigin-Name: 31c94acc72d318b5dec0fef1485621943add45c8
2004-03-13 14:00:36 +00:00
drh
1a72d72a7f
Typecast to work around a bug in {quote: CodeWarrior} Studio v9.1.
...
Ticket #654 . (CVS 1292)
FossilOrigin-Name: 5864fc6937b933b7da0c00e6c4c2ee1b9b939cff
2004-03-10 18:57:31 +00:00
a.rottmann
7972e32a9e
Fixed default target. (CVS 1291)
...
FossilOrigin-Name: af19ab32c5b329b053f3daf3c812eb593b89cd7f
2004-03-10 18:53:09 +00:00
a.rottmann
66eb270d6b
* Added rule for rebuilding Makefile from Makefile.in.
...
* Fixed double-slash problem induced by adding DESTDIR support. (CVS 1290)
FossilOrigin-Name: 957827e35cca65de11894eb2dfc78327f4034dfc
2004-03-10 16:32:03 +00:00
drh
a0c9a112de
The BTree layer now returns SQLITE_READONLY on an attempt to open a write
...
cursor on a read-only database. Previously, the failure would not occur
until there was an attempt to write to the cursor. (CVS 1289)
FossilOrigin-Name: 8a8be4687bf9fd88952b303f30f93aa6fed75b60
2004-03-10 13:42:37 +00:00
drh
06333689a7
The shell program now ignores extra whitespace at the end of dot-commands. (CVS 1288)
...
FossilOrigin-Name: b6817e99bd97f427b1cfd16328d612e1a7d70d0a
2004-03-09 13:37:45 +00:00
drh
a2cfd57491
Version 2.8.13 (CVS 1287)
...
FossilOrigin-Name: 4d5bbb3dc32412ee7fa5dec42d3278836a362e8c
2004-03-08 13:57:54 +00:00
drh
e3f25eb91e
Update change log for version 2.8.13. (CVS 1286)
...
FossilOrigin-Name: 4431e63746311d2e3429203656f8168c227ecb6e
2004-03-08 13:45:24 +00:00
drh
489c4677a0
Bump the version number to 2.8.13. Patch up the limit test so that it works
...
in spite of ticket #521 - we don't want any tests failing in an official
release even if there are bugs. :-D (CVS 1285)
FossilOrigin-Name: 2c6bd21ed0e212109cfb4a37cfac2a10ab58a024
2004-03-08 13:26:17 +00:00
rdc
aa5707cd5e
Correct duplicate tracing of SQL statements. (CVS 1284)
...
FossilOrigin-Name: bb67311b3db49ce772533da14f62497c55432fae
2004-03-04 19:09:20 +00:00
drh
79f14b7240
A vdbe stack element might have a string value even after a call to
...
Integerify(). Ticket #641 . (CVS 1283)
FossilOrigin-Name: 3cac4b7b526d6c5dbf394009b534707bcb65b0da
2004-03-03 01:51:24 +00:00
drh
b1aa04fccc
Make sure a LIMIT clause on a SELECT cleans up the vdbe stack so that if it
...
occurs inside a trigger, it won't cause a stack overflow. Ticket #640 . (CVS 1282)
FossilOrigin-Name: 5aaa2939baa972231def086ed5f9d9ba63302532
2004-03-02 18:37:41 +00:00
a.rottmann
9bc8b93f41
Updated aclocal.m4 and configure. (CVS 1281)
...
FossilOrigin-Name: 76d42921a475c531a77677c3fe73b6da265a878d
2004-02-29 15:18:31 +00:00
drh
0d131ab716
One more fix to the new HH:MM:SS modifier. This time add some test
...
procedures too. (CVS 1280)
FossilOrigin-Name: 7b3b8968ee9a5349dd6e9ae1e7a311bf8906607c
2004-02-29 01:08:17 +00:00
drh
b6829e94bd
Try again to get the HH:MM:SS modifier change right... (CVS 1279)
...
FossilOrigin-Name: e20d51f94ed67b8864a435e5735f61f396662c21
2004-02-29 00:50:33 +00:00
drh
446536a089
Fix a bug in the HH:MM:SS modifier change that was just checked in. (CVS 1278)
...
FossilOrigin-Name: 248b5500900bc8f401006aaa9b7dac090ae419fa
2004-02-29 00:48:08 +00:00
drh
33a9ad2f8c
Allow time modifiers of the form HH:MM:SS.SSS with an option "+" or "-"
...
prefix. The specified amount of time is added into the date-time begin
modified. (CVS 1277)
FossilOrigin-Name: 559002a52fe3c42fe71ffce364eff4a036ae6b83
2004-02-29 00:40:32 +00:00
drh
3039c0a896
Fix some compiler warnings in LCC. The warnings did not indicate real
...
problems. Ticket #634 . Not all warnings in ticket #634 were fixed. (CVS 1276)
FossilOrigin-Name: e97089b7df3e2fbfcf36062099d02ecb75e9a870
2004-02-29 00:11:30 +00:00
a.rottmann
1d78a38f51
Make Windows .dll build use the real .o files, not the libtool-faked .lo
...
ones. (CVS 1275)
FossilOrigin-Name: cce5bbf49b0a30c40d24a559bc6cb4585dd9aea5
2004-02-28 18:02:20 +00:00
a.rottmann
964dbb1e6c
Build system update:
...
* Update of generated/libtoolized files: config.guess, config.sub,
configure, ltmain.sh
* Removal of libtool, which is generated by configure
* Changes to Makefile.in, adding better support for newer libtools (CVS 1274)
FossilOrigin-Name: 22d63bbf78997f0b31bb39054fbcfccf9d974bd6
2004-02-26 19:47:42 +00:00
rdc
f146a77677
Add comments and prototype for experimental sqlite_last_statement_changes() API function. Also, allow function to be called from tcl. (CVS 1273)
...
FossilOrigin-Name: ca99920b0dbf773962b47766d690154fd1276513
2004-02-25 22:51:06 +00:00
drh
268380ca9e
Min() and max() functions honor the distinction between TEXT and NUMERIC
...
data. Ticket #623 . typeof() is now a user function. Some tests are
now failing due to ticket #521 . (CVS 1272)
FossilOrigin-Name: adbe31adf1ad0ca723203ca3d7dc480324c60d43
2004-02-25 13:47:31 +00:00
drh
d41d73d556
Fix the return type of sqliteRunVacuum. Ticket #627 . (CVS 1271)
...
FossilOrigin-Name: 9c9f4a867a4ea708847cbb0839b7279eb33ecd7c
2004-02-25 02:33:34 +00:00