diff options
author | drh <drh@noemail.net> | 2017-03-22 21:45:20 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-03-22 21:45:20 +0000 |
commit | f07b249f92fb1d0a37b1444657d14ed7042bafa7 (patch) | |
tree | 25caaf76227406201b65aa919aee32c2a351f45f /ext/misc/json1.c | |
parent | 633647af75b3e680abe57922a8f1ec495b4150c6 (diff) | |
download | sqlite-f07b249f92fb1d0a37b1444657d14ed7042bafa7.tar.gz sqlite-f07b249f92fb1d0a37b1444657d14ed7042bafa7.zip |
Change the name of the new function to "json_merge_patch()".
FossilOrigin-Name: 53bf70f37bbca319ea35f70849e2a34ae628a504486158fdad5c4bb7431c68e0
Diffstat (limited to 'ext/misc/json1.c')
-rw-r--r-- | ext/misc/json1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/json1.c b/ext/misc/json1.c index 0db946fdc..c037525c4 100644 --- a/ext/misc/json1.c +++ b/ext/misc/json1.c @@ -2257,7 +2257,7 @@ int sqlite3Json1Init(sqlite3 *db){ { "json_array_length", 2, 0, jsonArrayLengthFunc }, { "json_extract", -1, 0, jsonExtractFunc }, { "json_insert", -1, 0, jsonSetFunc }, - { "json_mergepatch", 2, 0, jsonMergePatchFunc }, + { "json_merge_patch", 2, 0, jsonMergePatchFunc }, { "json_object", -1, 0, jsonObjectFunc }, { "json_quote", 1, 0, jsonQuoteFunc }, { "json_remove", -1, 0, jsonRemoveFunc }, |