mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-11 01:42:22 +03:00
Fix an incorrect assertion-fault in the "TREETRACE" debugging logic on
select.c. The problem does not affect production builds. FossilOrigin-Name: f11bb42292d94e7b7687bd2134f72afe1353182238cb4837fc0a6d78a021dd7e
This commit is contained in:
@@ -6259,7 +6259,7 @@ static void printAggInfo(AggInfo *pAggInfo){
|
||||
"agg-column[%d] pTab=%s iTable=%d iColumn=%d iMem=%d"
|
||||
" iSorterColumn=%d %s\n",
|
||||
ii, pCol->pTab ? pCol->pTab->zName : "NULL",
|
||||
pCol->iTable, pCol->iColumn, AggInfoColumnReg(pAggInfo,ii),
|
||||
pCol->iTable, pCol->iColumn, pAggInfo->iFirstReg+ii,
|
||||
pCol->iSorterColumn,
|
||||
ii>=pAggInfo->nAccumulator ? "" : " Accumulator");
|
||||
sqlite3TreeViewExpr(0, pAggInfo->aCol[ii].pCExpr, 0);
|
||||
|
||||
Reference in New Issue
Block a user