aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-08-26 11:40:11 +0000
committerdrh <drh@noemail.net>2015-08-26 11:40:11 +0000
commit0576bc59a730c57f14f037dc90a28d0a7ec2d51f (patch)
treefc46ca6f2a9a9e869e1ac7e09f1097e8954b81d8 /src/sqliteInt.h
parent1c4505de91f059bcfab8b59395455010581d43fb (diff)
downloadsqlite-0576bc59a730c57f14f037dc90a28d0a7ec2d51f.tar.gz
sqlite-0576bc59a730c57f14f037dc90a28d0a7ec2d51f.zip
Refactor With.a.zErr into With.a.zCteErr. No logic changes.
FossilOrigin-Name: 58ba73630ecc4bc58b03a7962dd45b305ef605ef
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index a57f00afb..867a608ec 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -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];
};