1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-04 20:02:48 +03:00

Tweaks to error message text.

FossilOrigin-Name: 090a77d97808b86d1e9f5c63c743a2b159a15f5d
This commit is contained in:
drh
2014-01-16 21:59:51 +00:00
parent f2655fe8b6
commit 727a99f1e3
5 changed files with 26 additions and 29 deletions

View File

@@ -4222,7 +4222,7 @@ With *sqlite3WithAdd(
int i;
for(i=0; i<pWith->nCte; i++){
if( sqlite3StrICmp(zName, pWith->a[i].zName)==0 ){
sqlite3ErrorMsg(pParse, "duplicate cte name: %s", zName);
sqlite3ErrorMsg(pParse, "duplicate WITH table name: %s", zName);
}
}
}