aboutsummaryrefslogtreecommitdiff
path: root/src/build.c
Commit message (Expand)AuthorAge
* Continuing work on the new memory allocation subsystem.drh2008-06-15
* Fix more compiler warnings. (CVS 5074)drh2008-05-01
* Make sure that transactions are started on all virtual tables thatdrh2008-04-28
* Remove all references to sqlite3_intptr_t. (CVS 5051)drh2008-04-27
* Continuing progress on the journal_mode pragma. It still does not work. (CVS...drh2008-04-17
* Remove entries from the sqlite_stat1 table whenever an index is dropped. Rela...danielk19772008-04-11
* Simplifications to the LockTable opcode. (CVS 4954)drh2008-04-02
* More test cases and bug fixes with CSE. (CVS 4948)drh2008-04-01
* Modify the {quote: IdxDelete} opcode so that it takes an array of registers r...drh2008-03-25
* Use a vdbe memory cell to allocate the space required for vdbe cursors. (CVS ...danielk19772008-03-25
* Initial implementation of per-connection limits and the sqlite3_limit() API.drh2008-03-20
* Handle non-autoconf build correctly with new changes (CVS 4832)mlcreech2008-03-06
* Use intptr_t definition to silence warnings about ptr-int casts (CVS 4824)mlcreech2008-03-06
* Version number to 3.5.5. Include FTS3 in the amalgamation by defaultdrh2008-01-31
* Error messages says "no such view" instead of "no such table" whendrh2008-01-25
* Remove dead code from the lemon-generated parser. Better testingdrh2008-01-22
* Changes to lemon to generate additional comments in the output file anddrh2008-01-22
* Miscellaneous test coverage improvements. (CVS 4734)drh2008-01-21
* Registerification of the VDBE is complete. The operand stack has beendrh2008-01-17
* Registerification of the WHERE clause logic. (CVS 4716)drh2008-01-17
* The sqlite3_trace() callback now prints a message as each trigger firesdrh2008-01-12
* Continuing work toward converting the VM into a register machine. (CVS 4707)drh2008-01-12
* More work toward converting the VM into a register-based machine. (CVS 4704)drh2008-01-10
* All essential opcodes can now operate out of registers and completelydrh2008-01-09
* Registerify the SRT_Subroutine destination for SELECT results. (CVS 4690)drh2008-01-06
* Modify OP_RegMakeRec to take a base register and count and optionallydrh2008-01-05
* Register-ify the OP_AddImm and all casting opcodes. Omit thedrh2008-01-05
* Get rid of OP_Dup, OP_MemStore, OP_MemLoad, and OP_MemMove. Replacedrh2008-01-05
* Implement the out2-prerelease opcode design pattern. (CVS 4681)drh2008-01-04
* Registers (aka memory cells) in the VM are now numbered starting with 1drh2008-01-03
* Change the OP_Insert opcode to read the key and data to insert from memory ce...danielk19772008-01-03
* Change OP_OpenRead and OP_OpenWrite so that the database number is read from ...danielk19772008-01-03
* Refactoring the VM. The P3 parameter is changed to P4. A P5 parameter isdrh2008-01-03
* Combine the eDest and iParm arguments to sqlite3Select() into a single type -...danielk19772008-01-02
* Fix a race condition that can occur when reloading the database schema in sha...danielk19772007-12-27
* Make sure statement journals are initiated when doing DROP operationsdrh2007-12-04
* When parsing CREATE INDEX statements from the sqlite_master table, do not sea...danielk19772007-12-02
* Allow collation sequence names to be quoted. Ticket #2744. (CVS 4537)danielk19772007-11-12
* Fix for OMIT_AUTHORIZATION builds. (CVS 4489)danielk19772007-10-15
* Do not invoke the authorizer when reparsing the schema after a schemadrh2007-10-12
* Fixes for OMIT_AUTHORIZATION builds. #2691. (CVS 4466)danielk19772007-10-04
* Honor the SQLITE_OPEN_ flags passed into sqlite3_open_v2(). Somedrh2007-09-03
* Fix for the sqlite3AbortOtherActiveVdbes() problem. (CVS 4328)drh2007-08-30
* Use the DbMalloc() and DbRealloc() functions more consistently. (CVS 4323)danielk19772007-08-29
* Modifications to the malloc failure tests to test transient and persistent fa...danielk19772007-08-29
* Clean up the locking in the btree logic. (CVS 4316)drh2007-08-28
* Work toward correct btree locking in a multithreaded environment. (CVS 4307)drh2007-08-28
* The malloc.test script now passes all tests with no errors. (CVS 4271)drh2007-08-22
* The sqlite3_value object now carries an sqlite3* pointer to use fordrh2007-08-21
* Begin adding mutexes. Compiles without SQLITE_OMIT_SHARED_CACHE but wedrh2007-08-17