aboutsummaryrefslogtreecommitdiff
path: root/src/resolve.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-09-12 23:42:22 +0000
committerdrh <drh@noemail.net>2013-09-12 23:42:22 +0000
commitebb6a65d16bb653b06df6b6e4e0c17c72de6de3d (patch)
treeb4581e1259348be96e72b6d8361349a05644b697 /src/resolve.c
parenta4c3c87e3dea5b596ebf28e3b91b3d8aa3be4bd6 (diff)
downloadsqlite-ebb6a65d16bb653b06df6b6e4e0c17c72de6de3d.tar.gz
sqlite-ebb6a65d16bb653b06df6b6e4e0c17c72de6de3d.zip
Refactor the ExprSetIrreducible() macro into ExprSetVVAProperty(*,EP_NoReduce).
This is a naming change only. The logic is the same. FossilOrigin-Name: 695aee46e9bdf15159ab52db7f522b30c91aed0f
Diffstat (limited to 'src/resolve.c')
-rw-r--r--src/resolve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resolve.c b/src/resolve.c
index c1e8cb798..eacffc540 100644
--- a/src/resolve.c
+++ b/src/resolve.c
@@ -235,7 +235,7 @@ static int lookupName(
/* Initialize the node to no-match */
pExpr->iTable = -1;
pExpr->pTab = 0;
- ExprSetIrreducible(pExpr);
+ ExprSetVVAProperty(pExpr, EP_NoReduce);
/* Translate the schema name in zDb into a pointer to the corresponding
** schema. If not found, pSchema will remain NULL and nothing will match