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/sqliteInt.h | |
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/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 0715cae3c..f4c48c112 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3008,6 +3008,7 @@ struct ExprList { unsigned bNulls :1; /* True if explicit "NULLS FIRST/LAST" */ unsigned bUsed :1; /* This column used in a SF_NestedFrom subquery */ unsigned bUsingTerm:1; /* Term from the USING clause of a NestedFrom */ + unsigned bNoExpand: 1; union { struct { /* Used by any ExprList other than Parse.pConsExpr */ u16 iOrderByCol; /* For ORDER BY, column number in result set */ |