1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix a problem causing SQLITE_OMIT_COMPOUND_SELECT builds to fail.

FossilOrigin-Name: b30db0ac3096b43d55a6da40cafc7de569082bf8
This commit is contained in:
dan
2014-01-25 12:16:53 +00:00
parent 693e671936
commit b68b97789e
4 changed files with 11 additions and 12 deletions

View File

@@ -1763,7 +1763,6 @@ static KeyInfo *multiSelectOrderByKeyInfo(Parse *pParse, Select *p, int nExtra){
return pRet;
}
#endif /* SQLITE_OMIT_COMPOUND_SELECT */
#ifndef SQLITE_OMIT_CTE
/*
@@ -1921,7 +1920,7 @@ end_of_recursive_query:
p->pOffset = pOffset;
return;
}
#endif
#endif /* SQLITE_OMIT_CTE */
/* Forward references */
static int multiSelectOrderBy(
@@ -1931,7 +1930,6 @@ static int multiSelectOrderBy(
);
#ifndef SQLITE_OMIT_COMPOUND_SELECT
/*
** This routine is called to process a compound query form from
** two or more separate queries using UNION, UNION ALL, EXCEPT, or