diff options
author | drh <> | 2024-05-18 20:00:08 +0000 |
---|---|---|
committer | drh <> | 2024-05-18 20:00:08 +0000 |
commit | 04624990514ae7c593ad224dd87cd9037cec752f (patch) | |
tree | 88e3ed5bd9703df77b9193cf3594eb557d049a70 /src/treeview.c | |
parent | 79dac84b315ced19266d55f769341782f429e6b4 (diff) | |
download | sqlite-04624990514ae7c593ad224dd87cd9037cec752f.tar.gz sqlite-04624990514ae7c593ad224dd87cd9037cec752f.zip |
Fix the definition of sqlite3_vtab_distinct() such that return codes 2 and
3 mean that all rows must be distinct over "colUsed" which is a superset of
"aOrderBy". Also, disallow return codes 2 and 3 if the rowid of the virtual
table is accessed.
FossilOrigin-Name: 922731ce98c0ce7837784ff7966049e59fa73da2aa04abf3506503b6fc4aa048
Diffstat (limited to 'src/treeview.c')
-rw-r--r-- | src/treeview.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/treeview.c b/src/treeview.c index d3346b468..fa9eac614 100644 --- a/src/treeview.c +++ b/src/treeview.c @@ -194,8 +194,10 @@ void sqlite3TreeViewSrcList(TreeView *pView, const SrcList *pSrc){ x.printfFlags |= SQLITE_PRINTF_INTERNAL; sqlite3_str_appendf(&x, "{%d:*} %!S", pItem->iCursor, pItem); if( pItem->pTab ){ - sqlite3_str_appendf(&x, " tab=%Q nCol=%d ptr=%p used=%llx", - pItem->pTab->zName, pItem->pTab->nCol, pItem->pTab, pItem->colUsed); + sqlite3_str_appendf(&x, " tab=%Q nCol=%d ptr=%p used=%llx%s", + pItem->pTab->zName, pItem->pTab->nCol, pItem->pTab, + pItem->colUsed, + pItem->fg.rowidUsed ? "+rowid" : ""); } if( (pItem->fg.jointype & (JT_LEFT|JT_RIGHT))==(JT_LEFT|JT_RIGHT) ){ sqlite3_str_appendf(&x, " FULL-OUTER-JOIN"); |