mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-11 01:42:22 +03:00
Additional SELECT trace logic: Show the tree after result-set wildcard
expansion but before name resolution. FossilOrigin-Name: a7babf75418adffa27dec7a9d382a60e1b9364fb51d72b0a10e2769b308b3c54
This commit is contained in:
@@ -5882,6 +5882,12 @@ static int selectExpander(Walker *pWalker, Select *p){
|
||||
p->selFlags |= SF_ComplexResult;
|
||||
}
|
||||
}
|
||||
#if TREETRACE_ENABLED
|
||||
if( sqlite3TreeTrace & 0x100 ){
|
||||
SELECTTRACE(0x100,pParse,p,("After result-set wildcard expansion:\n"));
|
||||
sqlite3TreeViewSelect(0, p, 0);
|
||||
}
|
||||
#endif
|
||||
return WRC_Continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user