mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-14 00:22:38 +03:00
Minor simplification of error message text for a couple of errors associated
with WITH clause processing. FossilOrigin-Name: 2031004d960526d6426d50d7b732f37b281534e2
This commit is contained in:
@@ -1808,7 +1808,7 @@ static int multiSelect(
|
||||
** are supported on recursive queries. */
|
||||
assert( p->pOffset==0 || p->pLimit );
|
||||
if( p->pOrderBy || p->pLimit ){
|
||||
sqlite3ErrorMsg(pParse, "%s in a recursive query is not allowed",
|
||||
sqlite3ErrorMsg(pParse, "%s in a recursive query",
|
||||
p->pOrderBy ? "ORDER BY" : "LIMIT"
|
||||
);
|
||||
goto multi_select_end;
|
||||
|
||||
Reference in New Issue
Block a user