diff options
author | drh <drh@noemail.net> | 2012-01-17 15:29:14 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2012-01-17 15:29:14 +0000 |
commit | 33f111dc724af4012c76057bf6fd9b8e06dd6608 (patch) | |
tree | 585ea13b77724b12e08e9cfbf420626f89c45f5b /src/sqliteInt.h | |
parent | 18f52e00216acdb889f9813850ef749ec2c4ccad (diff) | |
download | sqlite-33f111dc724af4012c76057bf6fd9b8e06dd6608.tar.gz sqlite-33f111dc724af4012c76057bf6fd9b8e06dd6608.zip |
Remove the undocumented PRAGMA omit_readlock hack.
FossilOrigin-Name: 96900c47e4fc6ed55cefc10d55d3d8d16bcb1d31
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 6e48b1c4f..9071bef41 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -946,8 +946,7 @@ struct sqlite3 { #define SQLITE_SqlTrace 0x00004000 /* Debug print SQL as it executes */ #define SQLITE_VdbeListing 0x00008000 /* Debug listings of VDBE programs */ #define SQLITE_WriteSchema 0x00010000 /* OK to update SQLITE_MASTER */ -#define SQLITE_NoReadlock 0x00020000 /* Readlocks are omitted when - ** accessing read-only databases */ + /* 0x00020000 Unused */ #define SQLITE_IgnoreChecks 0x00040000 /* Do not enforce check constraints */ #define SQLITE_ReadUncommitted 0x0080000 /* For shared-cache mode */ #define SQLITE_LegacyFileFmt 0x00100000 /* Create new databases in format 1 */ |