1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

For TK_ORDER expression nodes to always be full-size.

FossilOrigin-Name: a5c73b46f4772f214ffbfa31cb87dce82ebd690addabef539bd09def26b7744d
This commit is contained in:
drh
2023-10-19 19:57:57 +00:00
parent 5080397e67
commit 5f53f85e22
3 changed files with 8 additions and 7 deletions

View File

@@ -1240,6 +1240,7 @@ void sqlite3ExprAddFunctionOrderBy(
pOB->x.pList = pOrderBy;
assert( ExprUseXList(pOB) );
pExpr->pLeft = pOB;
ExprSetProperty(pOB, EP_FullSize);
}
/*