aboutsummaryrefslogtreecommitdiff
path: root/test/progress.test
Commit message (Collapse)AuthorAge
* More test output refinements.mistachkin2015-06-10
| | | FossilOrigin-Name: e64a5681793238fa04fe3636f48d34b2dd36cdfa
* Fix a minor problem in progress.test. No code changes.dan2013-08-21
| | | FossilOrigin-Name: a95ae93b32a9ad2ae017124ed0881802c3c741c0
* Run progress callback checks less frequently in the main VDBE evaluationdrh2013-07-10
| | | | | | loop. This makes up for the extra CPU cycles used to increment the cycle counter for SQLITE_STMTSTATUS_VM_STEP. FossilOrigin-Name: 3e8b02011db2f393d4850115a471709b0a88594f
* Fix some problems in os_unix.c when compiled with ENABLE_LOCKING_STYLE on ↵dan2011-04-01
| | | | | OSX. Also some minor issues with test scripts. FossilOrigin-Name: 8088031bc949bd4efb5edf33bbd1bce5700fca56
* Fix a compiler warning and an unreachable branch. Restore 100% branch testdrh2011-04-01
| | | | | coverage. FossilOrigin-Name: 4dc148bb4cec5ecba167cdcb4959a4f0fa05a96f
* Fix a problem whereby following an IO error in CommitPhaseTwo() of a ↵dan2011-03-29
| | | | | multi-file transaction the b-tree layer could be left in TRANS_WRITE state, causing problems later on. FossilOrigin-Name: dbe569a099c2855480e35c0cc4d9332821ad80da
* Fix a problem in the unix VFS implementation of xNextSystemCall(). Also some ↵dan2011-03-29
| | | | | typos that prevent compilation when HAVE_POSIX_FALLOCATE is defined. FossilOrigin-Name: bc6cce81565b17f886478bd51500bba2ed11ec1d
* Fix the documentation for the sqlite3_column_*_name() functions to describedrh2011-03-29
| | | | | | | that the information can be invalidated when a prepared statement is reprepared by the first invocation of an sqlite3_step() for a particular execution cycle. FossilOrigin-Name: 7270f80ac5dd17b979f1f790b2dfcf811866c1dc
* Add the ability to enable and disable foreign key constraints and triggersdrh2011-03-21
| | | | | using calls to sqlite3_db_config(). FossilOrigin-Name: 09e167f9c14625924b17bbb1f292f89ac9ddc93a
* Enhances to the query planner such that "x IS NULL" constraints take thedrh2011-03-17
| | | | | STAT2 statistics into account, just like "x=VALUE" constraints. FossilOrigin-Name: 2353176811f752a16c1f2351a3d3431919b062a9
* Fix an instance of signed arithmetic overflow and an one bit-shift overflow.drh2011-03-05
| | | | | Mark six other signed arithmetic overflow locations that need fixing. FossilOrigin-Name: 04abab71ecd52f6070b9f84781a3df3d6dba7722
* When a stale schema-cookie is seen, expire only the one statement thatdrh2011-02-22
| | | | | | encountered the bad cookie, not every statement on the database connection. Ticket [b72787b1a7cea1f] FossilOrigin-Name: 1bca0a7e198391202fd2bc1650c0a62028a9aaa5
* Fix a problem with "EXPLAIN QUERY PLAN SELECT count(*) FROM tbl".dan2011-02-21
| | | FossilOrigin-Name: 9f9f32882501ac9b6e60f81195a64bdbf6e4497b
* Increment the change counter and update the SQLite version number wheneverdrh2011-01-15
| | | | | page 1 is added to the WAL. Ticket [5d863f876ee9561b9] FossilOrigin-Name: c1e0d09cd3f5feae123468a35f147021d839641c
* Add a test case demonstrating the problem described by ticket [5d863f876e].dan2011-01-15
| | | FossilOrigin-Name: af54963f0fa0afafbc2d0847f30543c041b182ec
* Fix comments, including some documentation comments, in the page cachedrh2011-01-14
| | | | | logic. No code changes. FossilOrigin-Name: c80e9c1a0dc0e501b209874e147e1cb1348cb4a4
* Fix a bug in test code (test_vfs.c).dan2011-01-14
| | | FossilOrigin-Name: 772a3845f8ef5cd3131992c45f6ce607977820f3
* Fix a typo on the sqlite3_open_v2() documentation.drh2011-01-13
| | | FossilOrigin-Name: b0add45abc9929c5b8d1124879bc3e8acf2ab7c7
* Fix a segfault that can occur in matchinfo if an fts4 table contains mostly ↵dan2011-01-13
| | | | | zero-length documents. Specifically, if the table contains more rows than it does bytes of text. FossilOrigin-Name: fe9047668eaaf76e7aa1ef1f32dec7c7c4226e45
* Do not raise an SQLITE_CORRUPT error in Recoverymode drh2011-01-12
| | | | | | | if the database size in the header is larger than the physical file size. This facilitates recovery of a database in which the database size field has been corrupted. FossilOrigin-Name: 114640d920e16c85de90b19d53c485135875de5b
* If a rollback is attempted in journal_mode=off mode, force SQLite to discard ↵dan2011-01-11
| | | | | the contents of the pager cache before processing any subsequent queries. FossilOrigin-Name: ece7efce2733b4fdd71db385abebbde464ac8f30
* Fix the sqlite3.h generator script so that it generates the correctdrh2011-01-11
| | | | | | SQLITE_SOURCE_ID string with the latest versions of Fossil that include fractional seconds on the date/time stamp. FossilOrigin-Name: 3513bf6ee090d9be97f60e12a4b39f4361ee17b7
* Reduce the number of calls to sqlite3_realloc() made by fts3 when querying ↵dan2010-12-24
| | | | | for position information of a term prefix. FossilOrigin-Name: 7088d9450f403f12f67eed558e368573101245d6
* Allow specific exclusion of localtime_s() usage on Windows.shane2009-09-22
| | | FossilOrigin-Name: 216bcda7d2818efda55849d5cb84aa483bc6429b
* Check in implementation of foreign key constraints.dan2009-09-19
| | | FossilOrigin-Name: d5d399811876391642937edeb9e8434dd9e356f5
* More documentation and comment updates for sqlite3_initialize/shutdown ↵shane2009-08-17
| | | | | interface changes to handle failures. FossilOrigin-Name: 32509bc7339cd6a46cea4c243e3418546860cb2d
* Fix for #2415. The progress handler should abandon only the current query, ↵danielk19772007-06-15
| | | | | not all active queries. (CVS 4067) FossilOrigin-Name: 115e19fe22b9e79fcc400f3a59c80dd9828100e7
* Have queries interrupted by the progress-handler return SQLITE_INTERRUPT. ↵danielk19772007-06-13
| | | | | Rollback any active transaction if a DML statement returns SQLITE_INTERRUPT. (CVS 4061) FossilOrigin-Name: 33454b5691637da7ded7d18d7f5726b796260c6b
* Allow SQL statements to be executed from within a progress callback.drh2006-05-26
| | | | | | | | Be warned, however, that the progress callback might be called recursively in this case. It is up to the program to disable the progress callback to prevent recursive invocations. Ticket #1827. (CVS 3193) FossilOrigin-Name: ffc4730c05ea64b8c32f64b323db9b96b26bcb88
* Fix some test scripts so that they work with a minimal build configuration. ↵danielk19772005-01-20
| | | | | (CVS 2241) FossilOrigin-Name: d267fb3ca3f31ee138c9613cb84e873ede7f141a
* Fix typos in the names of some regression tests. Ticket #962. (CVS 2023)drh2004-10-18
| | | FossilOrigin-Name: 77542beb31349b85bdf404c46980da346dde3266
* Improved test coverage of tclsqlite.c (CVS 1761)drh2004-06-29
| | | FossilOrigin-Name: 008e57dcd5e16886ed732fe1e9797a3c00e8c579
* Replace OP_Begin, OP_Commit and OP_Rollback with OP_AutoCommit. (CVS 1500)danielk19772004-05-31
| | | FossilOrigin-Name: b8ed812c92f2dbb4431d45aeb41646ceb53e0cbc
* Add sqlite_progress_handler() API for specifying an progress callback (CVS 1111)danielk19772003-10-18
FossilOrigin-Name: ddb364635a207658664ea92fc677cf16a143a938