From aae0f74e64d4efefd5297bfc26a88e2192aa50ff Mon Sep 17 00:00:00 2001 From: drh <> Date: Thu, 4 Mar 2021 16:03:32 +0000 Subject: Earlier detection of a misplaced ORDER BY or LIMIT clause in a compound SELECT. This prevents problems in recursive CTEs with multiple recursive terms in which there is an ORDER BY or LIMIT clause on the last non-recursive term. FossilOrigin-Name: e893f88750ea64d45922429e022c585748974016404f2a2b7952f5a227865246 --- src/sqliteInt.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/sqliteInt.h') diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 1d5f0d2a8..913de54dd 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4795,6 +4795,7 @@ void sqlite3KeyInfoUnref(KeyInfo*); KeyInfo *sqlite3KeyInfoRef(KeyInfo*); KeyInfo *sqlite3KeyInfoOfIndex(Parse*, Index*); KeyInfo *sqlite3KeyInfoFromExprList(Parse*, ExprList*, int, int); +const char *sqlite3SelectOpName(int); int sqlite3HasExplicitNulls(Parse*, ExprList*); #ifdef SQLITE_DEBUG -- cgit v1.2.3