Experimental change to "SELECT * FROM ... ORDER BY" processing to load some
column values from the db after sorting.
FossilOrigin-Name: 9719cb46bbf501ce80f185159d594f593dd0b2639b9ef5a71a6c7b70046cb08d
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index d932ae8..bc2840e 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2499,6 +2499,7 @@
unsigned done :1; /* A flag to indicate when processing is finished */
unsigned bSpanIsTab :1; /* zSpan holds DB.TABLE.COLUMN */
unsigned reusable :1; /* Constant expression is reusable */
+ unsigned bSorterRef :1; /* Defer evaluation until after sorting */
union {
struct {
u16 iOrderByCol; /* For ORDER BY, column number in result set */