1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Show the pointer address for Window objects in the TreeView display.

FossilOrigin-Name: 1ae70ad2ffd36c27b154940126c5e3ed00c05c0d8761d9320a65a03b1b4e4dc6
This commit is contained in:
drh
2019-03-28 13:53:12 +00:00
parent 0dc0e9c2af
commit 6f1644c0f9
3 changed files with 9 additions and 9 deletions

View File

@@ -317,9 +317,9 @@ void sqlite3TreeViewWindow(TreeView *pView, const Window *pWin, u8 more){
}
pView = sqlite3TreeViewPush(pView, more);
if( pWin->zName ){
sqlite3TreeViewLine(pView, "OVER %s", pWin->zName);
sqlite3TreeViewLine(pView, "OVER %s (%p)", pWin->zName, pWin);
}else{
sqlite3TreeViewLine(pView, "OVER");
sqlite3TreeViewLine(pView, "OVER (%p)", pWin);
}
if( pWin->zBase ) nElement++;
if( pWin->pOrderBy ) nElement++;