aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-04-03 20:33:33 +0000
committerdrh <drh@noemail.net>2015-04-03 20:33:33 +0000
commit62ca61ee61c379af19b2dd64cab29081216d2140 (patch)
tree59989681d96b729f70ecbb209362ee380cfda930 /src/os_unix.c
parenteaf26402370336186d8119e3130eaf050595ff44 (diff)
downloadsqlite-62ca61ee61c379af19b2dd64cab29081216d2140.tar.gz
sqlite-62ca61ee61c379af19b2dd64cab29081216d2140.zip
Disable the SQLITE_FCNTL_WAL_BLOCK feature for now. It needs more work and
is not yet ready for release. FossilOrigin-Name: 4ae9a3acc4eeeb7998769eb856c97c2233476f72
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index a9c883a93..1d867d7cd 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -3783,7 +3783,7 @@ static int unixFileControl(sqlite3_file *id, int op, void *pArg){
unixFile *pFile = (unixFile*)id;
switch( op ){
case SQLITE_FCNTL_WAL_BLOCK: {
- pFile->ctrlFlags |= UNIXFILE_BLOCK;
+ /* pFile->ctrlFlags |= UNIXFILE_BLOCK; // Deferred feature */
return SQLITE_OK;
}
case SQLITE_FCNTL_LOCKSTATE: {