1
0
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:
drh
2014-01-17 18:34:28 +00:00
parent 98f45e53a7
commit c59731c4ae
4 changed files with 12 additions and 12 deletions

View File

@@ -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;