mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-12 13:01:09 +03:00
Debugging enhancment: Show the Expr.y.pTab pointer on TK_COLUMN nodes of
an expression tree in the treeview. FossilOrigin-Name: 64154ac450e4366d18e7e867841877a69c1f978d3ba9b8754cc133248966731d
This commit is contained in:
@@ -432,8 +432,9 @@ void sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 moreToFollow){
|
||||
sqlite3TreeViewLine(pView, "COLUMN(%d)%s%s",
|
||||
pExpr->iColumn, zFlgs, zOp2);
|
||||
}else{
|
||||
sqlite3TreeViewLine(pView, "{%d:%d}%s",
|
||||
pExpr->iTable, pExpr->iColumn, zFlgs);
|
||||
sqlite3TreeViewLine(pView, "{%d:%d} pTab=%p%s",
|
||||
pExpr->iTable, pExpr->iColumn,
|
||||
pExpr->y.pTab, zFlgs);
|
||||
}
|
||||
if( ExprHasProperty(pExpr, EP_FixedCol) ){
|
||||
sqlite3TreeViewExpr(pView, pExpr->pLeft, 0);
|
||||
|
||||
Reference in New Issue
Block a user