Optimizations to the main loop inside sqlite3VdbeExec() to help VDBE byte code
run a few percent faster.
FossilOrigin-Name: d622ac6ac7a297754494d3a33dbaeea02836272e
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 16c1d6b..f98baf1 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2845,6 +2845,7 @@
int sqlite3ValueFromExpr(sqlite3 *, Expr *, u8, u8, sqlite3_value **);
void sqlite3ValueApplyAffinity(sqlite3_value *, u8, u8);
#ifndef SQLITE_AMALGAMATION
+extern const unsigned char sqlite3OpcodeProperty[];
extern const unsigned char sqlite3UpperToLower[];
extern const unsigned char sqlite3CtypeMap[];
extern SQLITE_WSD struct Sqlite3Config sqlite3Config;