diff options
author | drh <drh@noemail.net> | 2018-07-05 20:05:29 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-07-05 20:05:29 +0000 |
commit | 8be47a7e86bc6f40999cf2cdd98a9af1d1c99aef (patch) | |
tree | 48b50168a9cfff716b842848ad44ab1e4890185e /src | |
parent | 7a606e1ab2daa216834a557da342fa692cb0bc76 (diff) | |
download | sqlite-8be47a7e86bc6f40999cf2cdd98a9af1d1c99aef.tar.gz sqlite-8be47a7e86bc6f40999cf2cdd98a9af1d1c99aef.zip |
Get the json_group_array() and json_group_object() SQL functions working
as window functions.
FossilOrigin-Name: 916cdc83f5a45e0b6f61c52ff5fde70d54bcd0dfaa4a32f9ac709fe0ddbb480b
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index 6eb5f9502..2b449b946 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -6411,7 +6411,7 @@ case OP_AggStep: { ** P4 is a pointer to the FuncDef for this function. The P2 ** argument is not used by this opcode. It is only there to disambiguate ** functions that can take varying numbers of arguments. The -** P4 argument is only needed for the degenerate case where +** P4 argument is only needed for the case where ** the step function was not previously called. */ case OP_AggFinal: { |