diff options
author | drh <> | 2024-07-05 01:05:34 +0000 |
---|---|---|
committer | drh <> | 2024-07-05 01:05:34 +0000 |
commit | 615fc1f0831c2910aac4c943d0dc33e8ed108c6b (patch) | |
tree | 08ba1d5993be49405413cdb46f9aa4cfccc35f9d /src/sqliteInt.h | |
parent | a61f11f3074962fe4efb9a1e3478176829397961 (diff) | |
download | sqlite-615fc1f0831c2910aac4c943d0dc33e8ed108c6b.tar.gz sqlite-615fc1f0831c2910aac4c943d0dc33e8ed108c6b.zip |
Small performance optimizations.
FossilOrigin-Name: 99fd34b58a9b09af20f1f1a3c37137ae55159310c8af97806550eeee6adc4fc5
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 df6774aef..323a257f6 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3834,6 +3834,7 @@ struct Parse { u8 prepFlags; /* SQLITE_PREPARE_* flags */ u8 withinRJSubrtn; /* Nesting level for RIGHT JOIN body subroutines */ u8 bHasWith; /* True if statement contains WITH */ + u8 bHasSubrtn; /* True if any P4_SUBRTNSIG has been set */ #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) u8 earlyCleanup; /* OOM inside sqlite3ParserAddCleanup() */ #endif |