2009-10-19
| ||
11:43 | • Deferred ticket [897b96d49d]: SQLITE_CANTOPEN when using journal_mode=persist and async IO plus 1 other change (artifact: 433a58d38a user: dan) | |
11:43 | • Ticket [897b96d49d]: 3 changes (artifact: 75d8455ec2 user: dan) | |
2009-10-08
| ||
08:15 | • New ticket [897b96d49d]. (artifact: ae7a158a5f user: dan) | |
Ticket Hash: | 897b96d49d16dcc4dcfa5bd88ded30700e74bc94 | ||
Title: | SQLITE_CANTOPEN when using journal_mode=persist and async IO | ||
Status: | Deferred | Type: | Code_Defect |
Severity: | Minor | Priority: | Immediate |
Subsystem: | Extensions | Resolution: | Open |
Last Modified: |
2009-10-19 11:43:27 15.71 years ago |
Created: |
2009-10-08 08:15:31 15.74 years ago |
Version Found In: | 3.6.18 |
Description: | ||||
Steps to reproduce:
Tcl test code: sqlite3 db test.db -vfs sqlite3async sqlite3 db2 test.db -vfs sqlite3async do_test async4-3.1 { execsql { PRAGMA journal_mode = PERSIST; CREATE TABLE t1(a, b); } } {persist} do_test async4-3.2 { execsql { CREATE TABLE t2(a, b) } db2 } {} do_test async4.3.X { db close db2 close sqlite3async_control halt idle sqlite3async_start sqlite3async_wait } {} Test case async4-3.2 fails with "Error: unable to open database file". dan added on 2009-10-19 11:43:11: For now, the resolution is to consider async IO and persistent-journal mode incompatible. |