aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authordrh <>2022-04-23 07:29:34 +0000
committerdrh <>2022-04-23 07:29:34 +0000
commitab843a51d3513508d805602a530f2fd2761aed71 (patch)
tree919a9eeb46c4e3b08a93c4b99590d96f2dd9db98 /src/expr.c
parent45e41b7371e60c75356a5037f2ddd91261674967 (diff)
downloadsqlite-ab843a51d3513508d805602a530f2fd2761aed71.tar.gz
sqlite-ab843a51d3513508d805602a530f2fd2761aed71.zip
Fix minor problems with the new join table name resolution logic.
FossilOrigin-Name: 3a6b0db4519072dbd41b1c105bf1a0c6b4dd90380e94a5662645d8d41483c707
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/expr.c b/src/expr.c
index 170987621..f532bba2e 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -1633,6 +1633,7 @@ ExprList *sqlite3ExprListDup(sqlite3 *db, const ExprList *p, int flags){
pItem->done = 0;
pItem->bNulls = pOldItem->bNulls;
pItem->bUsed = pOldItem->bUsed;
+ pItem->bUsingTerm = pOldItem->bUsingTerm;
pItem->bSorterRef = pOldItem->bSorterRef;
pItem->u = pOldItem->u;
}