Make sure the SQLITE_Stat34 optimization switch is always 0x800, a value
which is hard-coded in the TH3 test suite.

FossilOrigin-Name: 6aed4ea34c4163c682ad5bb2956fdf4f3a3ad048fefd3edab0fef6761c3783cc
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 9b45295..99c8b73 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -1511,9 +1511,10 @@
 #define SQLITE_OrderByIdxJoin 0x0040   /* ORDER BY of joins via index */
 #define SQLITE_Transitive     0x0080   /* Transitive constraints */
 #define SQLITE_OmitNoopJoin   0x0100   /* Omit unused tables in joins */
-#define SQLITE_Stat34         0x0200   /* Use STAT3 or STAT4 data */
-#define SQLITE_CountOfView    0x0400   /* The count-of-view optimization */
-#define SQLITE_CursorHints    0x0800   /* Add OP_CursorHint opcodes */
+#define SQLITE_CountOfView    0x0200   /* The count-of-view optimization */
+#define SQLITE_CursorHints    0x0400   /* Add OP_CursorHint opcodes */
+#define SQLITE_Stat34         0x0800   /* Use STAT3 or STAT4 data */
+   /* TH3 expects the Stat34  ^^^^^^ value to be 0x0800.  Don't change it */
 #define SQLITE_AllOpts        0xffff   /* All optimizations */
 
 /*