diff options
author | drh <> | 2023-10-30 17:56:27 +0000 |
---|---|---|
committer | drh <> | 2023-10-30 17:56:27 +0000 |
commit | 30c9aca83eb25acf69faa5f1ba0eb92d116efed1 (patch) | |
tree | 3484d3d041e8e8323eaabfe1572422381fd37e11 /src | |
parent | 88d3c148c8921a4ce5bdcc0fbd5090dcbac0e496 (diff) | |
download | sqlite-30c9aca83eb25acf69faa5f1ba0eb92d116efed1.tar.gz sqlite-30c9aca83eb25acf69faa5f1ba0eb92d116efed1.zip |
Fix typo in a comment. No code changes.
FossilOrigin-Name: 424ef9550abaab32f745dc955e8996d51836eaed737e24c4b4db811aa118ce5d
Diffstat (limited to 'src')
-rw-r--r-- | src/select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select.c b/src/select.c index 0dac37b10..d7106f6ee 100644 --- a/src/select.c +++ b/src/select.c @@ -6743,7 +6743,7 @@ static void finalizeAggFunctions(Parse *pParse, AggInfo *pAggInfo){ ** registers if register regAcc contains 0. The caller will take care ** of setting and clearing regAcc. ** -** For an ORDER BY aggregate, the actually accumulator memory cell update +** For an ORDER BY aggregate, the actual accumulator memory cell update ** is deferred until after all input rows have been received, so that they ** can be run in the requested order. In that case, instead of invoking ** OP_AggStep to update accumulator, just add the arguments that would |