diff options
author | drh <> | 2022-05-02 19:59:03 +0000 |
---|---|---|
committer | drh <> | 2022-05-02 19:59:03 +0000 |
commit | 72d620bdb1a4e3e7c8d405a56ec382a89202dcec (patch) | |
tree | 19fdfa059f5a43657fb7350fa8f480cc2845d63c /src/expr.c | |
parent | 85f93850f7589e27fca2f41789525e9ccca2fb65 (diff) | |
download | sqlite-72d620bdb1a4e3e7c8d405a56ec382a89202dcec.tar.gz sqlite-72d620bdb1a4e3e7c8d405a56ec382a89202dcec.zip |
Name resolution and "*" wildcard expansion for parenthesized FROM clauses
seems to work the same as PG. The code is chaos, however, and needs some
cleanup.
FossilOrigin-Name: 6f9c0b07aadc5189c65c3ee4e6938aac10fc0d98f1cb06980f5e5d7b0308f237
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/expr.c b/src/expr.c index 77b5e0ad6..a93c6a1bc 100644 --- a/src/expr.c +++ b/src/expr.c @@ -1635,6 +1635,7 @@ ExprList *sqlite3ExprListDup(sqlite3 *db, const ExprList *p, int flags){ pItem->bUsed = pOldItem->bUsed; pItem->bUsingTerm = pOldItem->bUsingTerm; pItem->bSorterRef = pOldItem->bSorterRef; + pItem->bNoExpand = pOldItem->bNoExpand; pItem->u = pOldItem->u; } return pNew; |