diff options
author | drh <drh@noemail.net> | 2019-11-16 13:51:31 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-11-16 13:51:31 +0000 |
commit | 070ae3beeabde3cb0538dad323d15a9b0411e6a0 (patch) | |
tree | f3f685fde6da1026d93f1f1666031b0a41835fd7 /src/sqliteInt.h | |
parent | d0c51d1a041966bccc598d114aa17a13cf64d662 (diff) | |
download | sqlite-070ae3beeabde3cb0538dad323d15a9b0411e6a0.tar.gz sqlite-070ae3beeabde3cb0538dad323d15a9b0411e6a0.zip |
Break out the test for writable shadow tables into a separate subroutine.
FossilOrigin-Name: 8ad34d36a141fa8f5d9bd784dfeb892c983897a6dc6b867607cc668508acf944
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 73dbdbfc7..1ec1018a5 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4547,6 +4547,7 @@ void sqlite3AutoLoadExtensions(sqlite3*); ); # define sqlite3VtabInSync(db) ((db)->nVTrans>0 && (db)->aVTrans==0) #endif +int sqlite3ReadOnlyShadowTables(sqlite3 *db); int sqlite3VtabEponymousTableInit(Parse*,Module*); void sqlite3VtabEponymousTableClear(sqlite3*,Module*); void sqlite3VtabMakeWritable(Parse*,Table*); |