/ Timeline
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

50 check-ins occurring around 154ddbc17120be29.

2011-04-28
18:46
Have r-tree virtual tables support on-conflict clauses. check-in: 822ab52f10 user: dan tags: vtab-conflict
2011-04-27
19:54
In windows, ignore ERROR_NOT_LOCKED when calling the read-lock removal routine. check-in: f55156c519 user: drh tags: trunk
18:08
Change the name of an internal function to avoid conflicts with the math library. check-in: 1bd1484cd7 user: drh tags: trunk
16:05
Expose the UTF8 to MBCS conversion routine in os_win.c to external applications. check-in: 7b479b9bee user: drh tags: trunk
16:02
Add documentation for the newly introduced sqlite3_vtab_config() and on_conflict() API functions. Test that encountering an SQLITE_MISMATCH in fts3 does not corrupt the full text index. check-in: abdd70ae04 user: dan tags: vtab-conflict
12:08
Fix problems related to savepoint rollback and fts3. check-in: ff69f823f2 user: dan tags: vtab-conflict
01:00
Fix a comment typo. check-in: 19c6625abd user: drh tags: trunk
2011-04-26
19:21
Extra tests for fts3. And fixes for conflict-handling related problems in fts3. check-in: fb4a355871 user: dan tags: vtab-conflict
2011-04-25
18:49
Add support for on conflict clauses to fts3/fts4. check-in: 6d2633a6d0 user: dan tags: vtab-conflict
18:20
Test case for the ".log" command to the command-line shell. check-in: 7d0ff26a95 user: drh tags: trunk
18:03
Add the (deliberately undocumented) sqlite_log() SQL function as a built-in. check-in: f7806e0399 user: drh tags: trunk
18:01
Invoke the unix open() system call through a wrapper to avoid problems resulting from differing declarations to that function in various systems. check-in: 4c7ff4dd35 user: drh tags: trunk
2011-04-24
22:56
Disable the transfer optimization if the destination table contains any foreign key constraint and foreign key constraints are enabled. Ticket [6284df89debdf]. check-in: ddeea5ab5f user: drh tags: trunk
2011-04-23
19:06
Test that it is now possible to use different VFSs for two databases attached to a single handle. check-in: 2af51f856c user: dan tags: uri
15:54
Have the ATTACH command do URI interpretation in the same way as sqlite3_open() and sqlite3_open_v2() do. check-in: 68240e75e8 user: dan tags: uri
10:12
Fix parsing of %00 in uri handling code. check-in: 44f0874a95 user: dan tags: uri
2011-04-22
22:55
Add the "getlock" utility for determining if a database file (on unix) is currently locked. check-in: 0ab24b133e user: drh tags: trunk
19:37
Add the start of the "uri-filenames" feature. check-in: b8a8132e71 user: dan tags: uri
2011-04-20
13:35
Update a comment in e_createtable.test. check-in: d8b149f5e4 user: dan tags: trunk
2011-04-19
06:43
Avoid passing NULL to the xOpen method of an FTS3/4 tokenizer. check-in: 0dd09fc034 user: dan tags: trunk
2011-04-18
17:30
Merge trunk changes into sessions branch. check-in: b91b4c31fe user: dan tags: sessions
15:47
Fix further missing comments and other minor issues in the session module code. check-in: 99f0f35092 user: dan tags: sessions
12:05
Fix some missing comments and other issues with session module code. check-in: 20d7c28023 user: dan tags: sessions
07:36
Further coverage tests for the session module. check-in: 69a01c708b user: dan tags: sessions
2011-04-17
17:25
Version 3.7.6.2 check-in: 154ddbc171 user: drh tags: release, version-3.7.6.2, branch-3.7.6
17:17
Bump the version number to 3.7.6.2 check-in: c429edf30a user: drh tags: branch-3.7.6
17:14
Change the prototype for the open() system call to agree with Posix. Though a faulty function prototype in a pointer cast is a seemingly innocuous error, the correct prototype is necessary for pthreads to work correctly on NetBSD. check-in: 986f2f25ba user: drh tags: branch-3.7.6
17:09
Change the prototype for the open() system call to agree with Posix. Though a faulty function prototype in a pointer cast is a seemingly innocuous error, the correct prototype is necessary for pthreads to work correctly on NetBSD. check-in: 3e135748f1 user: drh tags: trunk
00:55
Adjust some test cases in triggerC.test to handle non-default SQLITE_MAX_TRIGGER_DEPTH settings. check-in: 9d6c6129fd user: shaneh tags: trunk
2011-04-16
19:23
Improve test coverage of session module. check-in: f46d4b641d user: dan tags: sessions
2011-04-15
21:37
Adjust test case in quota.test to handle Windows dir seperators. check-in: 75ed1bcee8 user: shaneh tags: trunk
20:18
Updates to test code in os_win to bring winSync inline with unixSync (test code only). Updated a few test scripts to account for dirsync counting issues on Windows. check-in: 8f99c5bf63 user: shaneh tags: trunk
19:30
Remove stray semi-colon that MSVC complained about. check-in: 7a085271ff user: shaneh tags: trunk
19:18
Improve coverage of session module. check-in: 3dfd1d63bd user: dan tags: sessions
16:39
Changes to memory allocator usage tracking to delay the onset of integer overflow. check-in: 4e33a0eaf8 user: drh tags: trunk
16:03
Add tests and fixes for OOM handling in sqlite3changeset_concat(). check-in: df0b2d21dc user: dan tags: sessions
15:18
Backport check-in [9f9f32882501ac9] to provide EXPLAIN QUERY PLAN output for the count(*) optimization. Also backport check-in [a8761a9128de945aa] to prevent unordered indices from being used on a full table scan. The first backport was necessary in order to test the second. check-in: 8d924e1607 user: drh tags: branch-3.7.2
15:04
Have sqlite3changeset_concat() return SQLITE_SCHEMA if an attempt is made to concatenate changesets based on incompatible database schemas. check-in: 343b64517d user: dan tags: sessions
14:46
Do not do full table scans of unordered indices. check-in: a8761a9128 user: drh tags: trunk
14:33
Fix #ifs involving SQLITE_ENABLE_LOCKING_STYLE so that they check the value of that macro and not whether it is defined. check-in: 8775f159c1 user: drh tags: trunk
13:29
Add retry logic to GetFileAttributesEx() on windows. Closed-Leaf check-in: 1cca9a49f2 user: drh tags: experimental
12:36
Make sure the unix backend returns SQLITE_FULL if write() fails with an ENOSPC error code. check-in: 721e3c16b3 user: drh tags: trunk
12:04
Add documentation for sqlite3changeset_concat() to sqlite3session.h. check-in: ada9efa53a user: dan tags: sessions
2011-04-14
18:01
Add further tests for the sqlite3changeset_concat() function. Also fixes. check-in: 1fc3f15d88 user: dan tags: sessions
11:16
Start adding the sqlite3changeset_concat() function to the session module. check-in: 8927b2260b user: dan tags: sessions
2011-04-13
23:42
Remove extra CR and NL characters from FormatMessage() generated error messages in the windows VFS. check-in: 8332949c28 user: drh tags: trunk
20:26
Add new extended error codes for I/O errors on seek and shared-memory map. Add sqlite3_log() calls in the windows backend to record details of errors. check-in: fe603217fc user: drh tags: trunk
16:52
Fix a usage comment typo in the showdb utility. check-in: 8744ced4ec user: drh tags: trunk
15:42
Update the apple-osx branch to version 3.7.6.1. check-in: 289194d68e user: drh tags: apple-osx
14:40
Version 3.7.6.1 check-in: a35e83eac7 user: drh tags: trunk, release, version-3.7.6.1