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

Refactor With.a.zErr into With.a.zCteErr. No logic changes.

FossilOrigin-Name: 58ba73630ecc4bc58b03a7962dd45b305ef605ef
This commit is contained in:
drh
2015-08-26 11:40:11 +00:00
parent 1c4505de91
commit 0576bc59a7
5 changed files with 19 additions and 19 deletions

View File

@@ -3030,7 +3030,7 @@ struct With {
char *zName; /* Name of this CTE */
ExprList *pCols; /* List of explicit column names, or NULL */
Select *pSelect; /* The definition of this CTE */
const char *zErr; /* Error message for circular references */
const char *zCteErr; /* Error message for circular references */
} a[1];
};