aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordan <dan@noemail.net>2015-04-04 16:43:16 +0000
committerdan <dan@noemail.net>2015-04-04 16:43:16 +0000
commitb33c50f215b45acd1b6f47008562e64d895d3fba (patch)
treedc7c0350a48cc6ef85460ddf4a148bf6fc304863 /src/sqliteInt.h
parent62ca61ee61c379af19b2dd64cab29081216d2140 (diff)
downloadsqlite-b33c50f215b45acd1b6f47008562e64d895d3fba.tar.gz
sqlite-b33c50f215b45acd1b6f47008562e64d895d3fba.zip
Fix a problem with resolving ORDER BY clauses that feature COLLATE clauses attached to compound SELECT statements.
FossilOrigin-Name: 427b50fba7362e5b447e79d39050f25ed2ef10af
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 3841c91f1..1c0ad44e3 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2389,6 +2389,7 @@ struct Select {
#define SF_MaybeConvert 0x0400 /* Need convertCompoundSelectToSubquery() */
#define SF_Recursive 0x0800 /* The recursive part of a recursive CTE */
#define SF_MinMaxAgg 0x1000 /* Aggregate containing min() or max() */
+#define SF_Converted 0x2000 /* By convertCompoundSelectToSubquery() */
/*