diff options
author | drh <> | 2022-12-14 09:06:45 +0000 |
---|---|---|
committer | drh <> | 2022-12-14 09:06:45 +0000 |
commit | a8b5c8739ce7427727a15cfc95979d1cbc4458f4 (patch) | |
tree | d13391d797a36aad5de072367294843673f270b3 /src/sqliteInt.h | |
parent | c799217cc8ca5284806503d09f5ae7c6cb5d0612 (diff) | |
download | sqlite-a8b5c8739ce7427727a15cfc95979d1cbc4458f4.tar.gz sqlite-a8b5c8739ce7427727a15cfc95979d1cbc4458f4.zip |
Back out the part of the change in [88a05141c28e5ff1] that adds affinity to
the materialization of a view, as the affinity can be undefined for a compound
query. This passes all TCL tests, but shows failures in the TH3 tests derived
from [forum:/forumpost/6f842bc5b2dadcb2|forum post 6f842bc5b2dadcb2], presumably
because the WHERE clause of the query uses constraints of the form
"source_crs_code='8675'" instead of "source_crs_code=8675". Perhaps further
changes on this branch should reimplement affinity on joins in cases where
the affinity is unambiguous.
FossilOrigin-Name: fe5a77bcc4de8f49cc4fe6bd2e2e1f31da8d3bc84120daaa99eb853b06291d15
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index dda0ee4b6..6db582b9c 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3573,7 +3573,7 @@ struct SelectDest { int iSDParm2; /* A second parameter for the eDest disposal method */ int iSdst; /* Base register where results are written */ int nSdst; /* Number of registers allocated */ - char *zAffSdst; /* Affinity used for SRT_Set, SRT_Table, and similar */ + char *zAffSdst; /* Affinity used for SRT_Set */ ExprList *pOrderBy; /* Key columns for SRT_Queue and SRT_DistQueue */ }; |