aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Import 'rtree' extension. (CVS 5159)danielk19772008-05-26
| | | FossilOrigin-Name: b104dcd6adadbd3fe15a348fe9d4d290119e139e
* Fix the LIKE query optimizer so that it works with LIKE patternsdrh2008-05-26
| | | | | ending in '@%' on NOCASE columns. Ticket #3139. (CVS 5158) FossilOrigin-Name: 33548744369643cc8843b74ad1fc1b7d5988d7a4
* Fixed various typos, spelling, grammar, and formatting mistakes. Ticket ↵shane2008-05-23
| | | | | #3124. (CVS 5157) FossilOrigin-Name: 77d5a7aa1c7ea715298228ed2dbd0497cacbd0e4
* Add a test case of preparing a statement with an nBytes parameter of 0drh2008-05-23
| | | | | and where the previous byte of the string is zero. Ticket #3134. (CVS 5156) FossilOrigin-Name: 846a69acb59403438696000b4ffd588ab42b2f95
* Do not references zSql(-1) if nBytes==0 in sqlite3_prepare().drh2008-05-23
| | | | | Ticket #3134. (CVS 5155) FossilOrigin-Name: 2d2c53e5058412a5f484ac2ca5bcef596aed2a7b
* Ensure that the db.mallocFailed flag is cleared before sqlite3_errmsg16() ↵danielk19772008-05-22
| | | | | returns. (CVS 5154) FossilOrigin-Name: 0d47653a3c39b7cd41c7e6edd8c4b4543658412d
* Add the "volatile" keyword to variables in the Pager structure used fordrh2008-05-21
| | | | | synchronization when memory management is enabled. (CVS 5153) FossilOrigin-Name: 25b9f3b9b2d996ab4582b22b695c4dbd94d09cc7
* Update sqlite3_open*() documentation on shared cache/filename matching ↵shane2008-05-21
| | | | | relationship. Ticket #3132. (CVS 5152) FossilOrigin-Name: 235e384eca65d5007e8e0c440904eb254f9b976a
* Fix the VACUUM command so that it does not modify the changes countsdrh2008-05-21
| | | | | | | reported by sqlite3_changes() or sqlite3_total_changes(). Update documentation on sqlite3_changes() and sqlite3_total_changes() to state that "DELETE FROM table" records a change count of zero. (CVS 5151) FossilOrigin-Name: f5d61d7d982b58accaf33df4362ce4a5eb79307e
* Fix OS/2 compilation for pre-C99 compilers. (CVS 5150)pweilbacher2008-05-20
| | | FossilOrigin-Name: de8e67182d8f9d1f0b215da93a396b9467604a50
* Corrections to the documented behavior of sqlite3_last_insert_rowid().drh2008-05-20
| | | | | | (This change is unrelated to the problem reported by Bram de Jong. That comes next.) (CVS 5149) FossilOrigin-Name: 894085a59cdc60c34c8a3eb560d98bcb4a087cb1
* Changes to the error handling policies of sqlite3_exec() to make themdrh2008-05-20
| | | | | | more consistent. Changes to the documentation on the error handling polices of sqlite3_exec() so that the documentation and code agree. (CVS 5148) FossilOrigin-Name: a0376c7907db8e2993ce48e484001e981fbbb187
* Do not attempt to write a master journal name to the (non-existent) journal ↵danielk19772008-05-20
| | | | | file in "no-journal" mode. Fix for #3127. (CVS 5145) FossilOrigin-Name: ffd4e50ab9b14fb7b686681c5e7a37b8355bbfca
* Improvements to API documentation. The sqlite3_exec() function nowdrh2008-05-19
| | | | | sets the result returned by sqlite3_errcode() when it receives an SQLITE_ABORT. (CVS 5144) FossilOrigin-Name: f1df19ca17a09ab8d85a4a7eb04f3ce95a6722da
* Fix sqlite3Atoi64 to return true if handed a number of all zeros. Thedrh2008-05-19
| | | | | | | failure to do this is benign as sqlite3Atoi64() is current used, but that might change in the future so it is good to go ahead and fix the function to return the correct result. (CVS 5142) FossilOrigin-Name: bc90787583dd2dadff72d516de9720d4a36e7fd2
* In the CLI, handle the compilation option -DOS_OS2=0 correctly. (CVS 5141)drh2008-05-19
| | | FossilOrigin-Name: 70793be63c0c6dab42d48c096e0e051e37d7e788
* Disable the column cache when coding values that will be passed to the ↵danielk19772008-05-16
| | | | | xFilter() method of a virtual table, in case the xFilter() implementation modifies the type or encoding of the value. Ticket #3121. (CVS 5139) FossilOrigin-Name: ecbc0d5deddc0ca0d1d2649e0134ee392266027e
* Check that the encoding of values passed to sqlite3_bind_value() matches ↵danielk19772008-05-16
| | | | | that of the database. (CVS 5138) FossilOrigin-Name: e94a2883060b9ef59809ff4de9525d897d95546c
* Add more version tags to files that lack them. Ticket #3120. (CVS 5137)danielk19772008-05-16
| | | FossilOrigin-Name: 81a8c70ed7a86abf286706fdbc251f31c9c53382
* Add version tag comments to source files that lack them.drh2008-05-15
| | | | | Tickets #3118 and #3119. (CVS 5136) FossilOrigin-Name: cf1fb2d850c3eebc2f92159a156695b61f023202
* Add the "page_count" pragma. Returns a single integer - the number of pages ↵danielk19772008-05-15
| | | | | in the specified database file. (CVS 5135) FossilOrigin-Name: eb6985e69ce2a5e5e7361f6226d1cfc547fd441d
* If a pager is already in the error-state when CommitPhaseOne() is called, ↵danielk19772008-05-15
| | | | | exit early. (CVS 5134) FossilOrigin-Name: 443cf1056c73ae89d0efcc7a462455c078b3a4a8
* Do not write pages to disk to free memory after an IO error occurs. (CVS 5132)danielk19772008-05-15
| | | FossilOrigin-Name: 10ea8287d090ae610416b4754c0838f13b51fd78
* On instruction from DRH, only do malloc failure tests for O/S ops on ↵shane2008-05-13
| | | | | non-Windows systems. Better test fixture code will be introduced in 3.6.0 to add this coverage back in for Windows. (CVS 5130) FossilOrigin-Name: e4aab150042bd22868ab02645151cb69a1c02ba0
* Do a slow-path in GetVarint32() for varints that do not fit in 32 bits.drh2008-05-13
| | | | | | This will only happen when trying to interpret a corrupt database file so speed is not critical. (CVS 5129) FossilOrigin-Name: 6a6b9437367b66c3b6f710cf3abbdb9841765b21
* Make the benign-fault setting recursive. Make all malloc failuresdrh2008-05-13
| | | | | during a rollback benign since there is nothing we can do about them. (CVS 5128) FossilOrigin-Name: a9d1d931358637a6f039723a053098f65530de4b
* Update the pager so that it does not try to commit a transaction if theredrh2008-05-13
| | | | | have been no changes to the database. (CVS 5127) FossilOrigin-Name: f1ed3689239098e0630e8d61f52971bcdf2801b6
* check that DosWrite() was successful before trying again (CVS 5125)pweilbacher2008-05-12
| | | FossilOrigin-Name: 1ef6458bee4f0f77ded7c532f196d4c876ec9649
* Add "b" to fopen() in the hexio tests so that extra carriage returns aredrh2008-05-12
| | | | | | not inserted on win32 and OS/2. Test harness change only - no changes to the core SQLite code. (CVS 5124) FossilOrigin-Name: 68cbc6b45c98ebaeca74e1ff5acc3ff7e34f45e9
* Fix typo in documentation of sqlite3_step(). Ticket #3110. (CVS 5122)drh2008-05-12
| | | FossilOrigin-Name: 4d397f57c4446b18c5c6faf728d315495e4abf6e
* Modify logging code in test_osinst.c. No changes to production code. (CVS 5120)danielk19772008-05-12
| | | FossilOrigin-Name: 85c54a16c7aecea3e0e5040ee8aca06d8b6a2b2b
* Use short timeout for locking operations by default to be more in sync with ↵pweilbacher2008-05-12
| | | | | the other platforms. (CVS 5119) FossilOrigin-Name: d00a015dbcc5a7fc4aa7cb41f9740a712af510ae
* Correctly test DosWrite() for failure return code (CVS 5118)pweilbacher2008-05-12
| | | FossilOrigin-Name: 3eff0ef2cfe70389bc80a270902702206be178f3
* Use memcpy() instead of casting to copy the content of a long long intdrh2008-05-11
| | | | | into a double. Ticket #3101. (CVS 5117) FossilOrigin-Name: 88e12caca99d1d54cfe6228cb0de1eccc93fcc74
* New test cases to verify that SQLite handles bound NaN, +Inf, and -Infdrh2008-05-11
| | | | | | | floating point values correctly. Improvements to the text->real conversion routine so that it generates +Inf and -Inf at appropriate times. Tickets #3101 and #3060. (CVS 5116) FossilOrigin-Name: 3ff2f1cdc9c57bca56de6cdc0ad5edc95b0606a0
* Fix leaked filename in case DosOpen() fails. (CVS 5115)pweilbacher2008-05-09
| | | FossilOrigin-Name: ecc6c739064922937ce66339f74403a0346aeedd
* Reformulate the constants for the minimum and maximum 64-bit signeddrh2008-05-09
| | | | | integer to work better with some compilers. Ticket #3105. (CVS 5113) FossilOrigin-Name: 18b1ee10b89bd0a98d1986dbb04b9d6cfc3dad39
* Fix a problem with recovering from an IO error in exclusive-locking mode. ↵danielk19772008-05-09
| | | | | (CVS 5112) FossilOrigin-Name: 7a44fb965b3477fb78901939ba35d569e5638c19
* Do not clear the error code or error message in sqlite3_clear_bindings().drh2008-05-09
| | | | | Ticket #3063. (CVS 5111) FossilOrigin-Name: 069f4560107246fdc31e1f15c3ad7d3dae2b9ad8
* Fix the ALTER TABLE RENAME algorithm so that it is not confuseddrh2008-05-09
| | | | | by comments in the CREATE TABLE statement. Ticket #3102. (CVS 5110) FossilOrigin-Name: ab18b4e75916b05863b31bc63625aa64a104a42c
* Back out check-in (5108). The original isnan() implementation is preferred. ↵drh2008-05-09
| | | | | Ticket #3101 and #3060. (CVS 5109) FossilOrigin-Name: 2349ae75dfdd626ed97db99ac6de4bdc5a395008
* Change the implementation of sqlite3IsNaN() so that it works even ifdrh2008-05-09
| | | | | compiled using -ffinite-math-only. Tickets #3101 and #3060. (CVS 5108) FossilOrigin-Name: 19ee2b3324461150d2c1600c67fe604114a1b69f
* Add extra instrumentation to test_osinst.c. Also the --binarylog option to ↵danielk19772008-05-08
| | | | | the test scripts. (CVS 5106) FossilOrigin-Name: 8a99efc07f93bc11d21aa501349c81f0fd8abf7b
* Use a 6-byte rather than an 8-byte encoding for integers betweendrh2008-05-08
| | | | | 17592186044416 and 140737488355327. Ticket #3100. (CVS 5105) FossilOrigin-Name: 0a4d26dede320d90a39133dce3d76ca3ee1a4ee6
* Fix some problems with multi-file transactions in persistent journal mode. ↵danielk19772008-05-07
| | | | | (CVS 5102) FossilOrigin-Name: e98a7f87f91c62676f94ad5a0c4980ab929ca79d
* Added test cases for corrupt SerialTypeLen header values, and additional ↵shane2008-05-07
| | | | | check to improve detection of corrupt values. (CVS 5101) FossilOrigin-Name: 530c6360610f737e85608b23ede2646d69d1bc9a
* If an error occurs within xAccess(), it should return -1. Remove an assert()danielk19772008-05-07
| | | | | that was preventing it from doing so. (CVS 5098) FossilOrigin-Name: 3fbcef46f7b6dcd20c1137692aa5bc0f64eaa3dd
* Fix a null-pointer dereference that can occur following a DISKFULL errordrh2008-05-07
| | | | | while running VACUUM. (CVS 5096) FossilOrigin-Name: 438d77a762a6f3cc7438e4d688013cc26e3e9486
* Omit mutex variables in the pager when threadsafe is disabled. (CVS 5095)drh2008-05-07
| | | FossilOrigin-Name: d15d0bbab043e4366f7988423115babb550198a1
* Fix a problem causing the database to be truncated to the wrong size after ↵danielk19772008-05-07
| | | | | an incremental-vacuum is performed on a database in full auto-vacuum mode. (CVS 5094) FossilOrigin-Name: ed98df24a3362c2d20f52bb1ce679787b3ee408b