aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2021-04-12 12:58:55 +0000
committerdrh <>2021-04-12 12:58:55 +0000
commitff37491874f609588c3974a5c6e154ba6b25efaa (patch)
tree903fa16afc627a0a19dc99103d20429c374ea4b2 /src
parentcd0b245934fa40282317fb98b298abc71bc0633f (diff)
downloadsqlite-ff37491874f609588c3974a5c6e154ba6b25efaa.tar.gz
sqlite-ff37491874f609588c3974a5c6e154ba6b25efaa.zip
Fix the display of SrcList in the sqlite3TreeView debugging routines.
FossilOrigin-Name: 28ecb3810b40ca58c2e04a752bbc2234c64c27185aef2cb3fe7c933082dc2578
Diffstat (limited to 'src')
-rw-r--r--src/treeview.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/treeview.c b/src/treeview.c
index 976558698..12a6b21a8 100644
--- a/src/treeview.c
+++ b/src/treeview.c
@@ -134,6 +134,7 @@ void sqlite3TreeViewSrcList(TreeView *pView, const SrcList *pSrc){
StrAccum x;
char zLine[100];
sqlite3StrAccumInit(&x, 0, zLine, sizeof(zLine), 0);
+ 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",