aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* | | Incremental improvements to the JSONB logic.drh2023-10-06
| | | | | | | | | FossilOrigin-Name: fe326829c27715e249f727ba797c7df6491e874ec205a0a82ee09c78d61c6e1f
* | | Fixes to rendering JSON5 extensions encoded as JSONB.drh2023-10-06
| | | | | | | | | FossilOrigin-Name: 5a17e4479aad2d8313170e5de83a1c52f30b55d9d4fb776024fa6622e175c63b
* | | Fix compiler warnings.drh2023-10-06
| | | | | | | | | FossilOrigin-Name: 5227add3c8d509de2e081249163fafdf30ac3173a6d710957f3c3b6f03e7017e
* | | Improvements to error handling.drh2023-10-06
| | | | | | | | | FossilOrigin-Name: b41dd237fb6c0dd7daedeaaf81dbc4fdb31cf511fd32cd3d4ee69db34e389915
* | | Merge compiler warning fixes from trunk into the jsonb branch.drh2023-10-06
|\| | | | | | | | FossilOrigin-Name: 6409d307915f8969f12df2d5ffa961645bd4db7ccfbd6f52237a217b6a867252
| * | Remove an unused parameter from the recomputeColumnsNotIndexed() routine indrh2023-10-06
| | | | | | | | | | | | | | | order to squash a harmless compiler warning. FossilOrigin-Name: 9bf4bfd68080367b58594e0d44b110b3ee9766420f648537fd7bc638dacefb72
| * | Ensure that all fields of static sqlite3_module objects are explicitlydrh2023-10-06
| | | | | | | | | | | | | | | initialized, in order to hush-up nuisance compiler warnings. FossilOrigin-Name: f3b3d712d6e58b1cb8fdebd2b6b3125080b6b3ac8c7c849a8cc1e5e778d62fe7
| * | Remove and unused static variable from shell.c.in in order to silence adrh2023-10-06
| | | | | | | | | | | | | | | harmless compiler warning. FossilOrigin-Name: 477577120b897bf15edc2a85e220d5c64a1d5a245354939269f6753d8140ac95
| * | Increase the size of some variables associated with the PMA sorter in orderdrh2023-10-06
| | | | | | | | | | | | | | | | | | to avoid any possibility of a signed integer overflow. [https://bugs.chromium.org/p/chromium/issues/detail?id=1489025|Chromium fuzzer issue 1489025]. FossilOrigin-Name: dc3be3af471d90dd810c1e2cc59e83cf6a57f01971b1258ea0da402e4d577ef2
* | | Improvements to coping with malformed JSONB.drh2023-10-06
| | | | | | | | | FossilOrigin-Name: 563cde404cec4c6559ae0c5fc5edbc878fee874b36562ce2fac5049cc8349343
* | | Better error detection when doing a lookup on a JSONB.drh2023-10-05
| | | | | | | | | FossilOrigin-Name: 6e8e0eedbf06e175af6ef230f1ce9a5ad84698b1c6dcd2794d878c746e7b6be4
* | | Improvements to comments. No changes to code.drh2023-10-05
| | | | | | | | | FossilOrigin-Name: ac74d7877685006e43684edd6a2d22be8c9857f9f9eb52fc5b3c182d5e2fdb8d
* | | Turn an unreachable branch into an assert().drh2023-10-05
| | | | | | | | | FossilOrigin-Name: 0f75199160e48fa8c44f986f1af777adf19e40fbd114a6f58e24d5e6dede779d
* | | Fix the parsing of non-standard "Infinity" and "NaN" values from text intodrh2023-10-05
| | | | | | | | | | | | | | | JSONB. FossilOrigin-Name: df1fbbeb83a2b4a496c9de0d86c7c8c677f8fe3bc770da163dcc1d338a17b58b
* | | Change the json_valid(X) routine to return true whenever X is a blob thatdrh2023-10-05
| | | | | | | | | | | | | | | could plausibly be a valid JSONB. FossilOrigin-Name: 425f0b85a6f8ad0604c4a5faa18efb90436fedb1fe2612a559147c62cff8b7e7
* | | Fix the text-to-JSONB parser so that it handles some JSON5 floating pointdrh2023-10-05
| | | | | | | | | | | | | | | literals correctly. FossilOrigin-Name: 564edb3b6dd752e09e445e3a25c2f5394ceede2a2cdff251d6433dadc0b3644f
* | | Slightly stricter testing for when a BLOB is valid JSONB: If the elementdrh2023-10-05
| | | | | | | | | | | | | | | is a null, true, or false, its payload size must be zero. FossilOrigin-Name: 487781be8a93d9b8d870efb9f25822bb4bbcf9d39d571d1017e9c29043ea515d
* | | Fix a memory leak following a syntax error in jsonb().drh2023-10-05
| | | | | | | | | FossilOrigin-Name: bf4b36eda8e200b67041ebdf60fc31d0325bd84185272f8d390c56a91d6ac1ee
* | | Allow the PG-style syntax for the PATH operand on the right-hand side ofdrh2023-10-05
| | | | | | | | | | | | | | | the ->> and -> operators. FossilOrigin-Name: bae5071b0834aa3b7fd4bd871f863e1b148c6558989c8f6cdd02dc4da4770953
* | | Merge trunk enhancements into the jsonb branch.drh2023-10-05
|\| | | | | | | | FossilOrigin-Name: be5907b648386e05530d1e321e2a3e563e07e99f08373aaf9a3452adc9228dc3
| * | Improved detection of corrupt databases in balance_nonroot().drh2023-10-05
| | | | | | | | | | | | | | | dbsqlfuzz d1cf013c50a620b68c2a5bd240d29afd65e5f58e. FossilOrigin-Name: a2464bbb825b5976ef974a2e6c17ea150f5e6fcd0dd0f144b9f9c1c22a9c9c82
| * | Remove a stray blank line from the beginning of btree.c. No functionaldrh2023-10-05
| | | | | | | | | | | | | | | code changes. FossilOrigin-Name: c89983dcfc208faa86b31717144c069572598e9770228264d69a044a84bde277
* | | Fix a memory leak in JSON group-aggregates when the output is JSONB.drh2023-10-03
| | | | | | | | | FossilOrigin-Name: 08e7db138b636890cb29a76d65c2069c6e2ff44470fa4bca14f4526fe5f195ae
* | | Fix a bug in the jsonReturnFromBlob() function that causes a positive resultdrh2023-10-03
| | | | | | | | | | | | | | | | | | for a negative value for when a JSON integer is too large and needs to be converted into double. FossilOrigin-Name: dca684da0c29ec78460362f972ea7747be42c13c4d1325da9d62c1ea58022e39
* | | Fix problems in the "json" output column of the json_tree() virtual tabledrh2023-10-03
| | | | | | | | | | | | | | | for the case when the input is JSONB. FossilOrigin-Name: fefa4475c496aab32fe7b9cc203747ce4faf7448da4f29b807e5486c7686238d
* | | Improved handling of OOM while translating the JsonNode representing intodrh2023-10-03
| | | | | | | | | | | | | | | the BLOB representation. FossilOrigin-Name: ef5956710bb542d6045c82937d02218a7ed45af94cf3959b0c180268e04d14e1
* | | Merge the latest trunk enhancements into the jsonb branch.drh2023-10-03
|\| | | | | | | | FossilOrigin-Name: e6406a9865b75dea2f26d3ee4f4c206958400059c7f92ced88edc8507dd3c82f
| * | Fix the length of the string in the new concat() and concat_ws() functions.drh2023-10-02
| | | | | | | | | FossilOrigin-Name: 325243226520376f4a142864ae3fb98866f25bff4dc50a6b648ef98428a7169f
| * | Remove an ALWAYS() from a branch that can in fact be false following an OOMdrh2023-10-02
| | | | | | | | | | | | | | | fault. FossilOrigin-Name: 3a1feb1c469d3dd50e2558581199b16bfd59b9d5bcb0de5f1a8f0ec30a17b4d1
| * | Remove an incorrect assert().drh2023-09-29
| | | | | | | | | FossilOrigin-Name: f090af775f6d2ce8b50850f5c9e33546bcb9cff5467d99ca210530cb7ca83d5b
* | | Fix a problem in the JSONB parser that comes up following an OOM.drh2023-10-03
| | | | | | | | | FossilOrigin-Name: 355acfb18897254f6b6444a21d781b5e10e930b81952850dd2a40d88bbf2f3db
* | | Fix an issue with the use of jsonb_group_array() and jsonb_group_object()drh2023-10-03
| | | | | | | | | | | | | | | when used by window functions. FossilOrigin-Name: 808bd349ba587fbcdc4aea3f9c08e0df01ba08dec181c5af5ea157e89d86ff7b
* | | Fix jsonb_insert() so that it does not behave like jsonb_set().drh2023-10-02
| | | | | | | | | | | | | | | New test cases added. FossilOrigin-Name: 54197149b811d30b6c4487eedf5692b164ed0f90cfcc541aa3157094f5f17f6a
* | | New test cases for JSONB.drh2023-10-02
| | | | | | | | | FossilOrigin-Name: d624c31e5c49e1ce63b4b72caa42a61c5167866f47d842fbcfe4e826fd079d7c
* | | Allow json_replace() to accept JSONB arguments as the new value.drh2023-10-02
| | | | | | | | | FossilOrigin-Name: 95eb7b37fab29931924311f541d52173ef77a448efc8771b1a1783ccd786d23d
* | | Improvements to error handling for BLOB inputs on JSON.drh2023-10-02
| | | | | | | | | FossilOrigin-Name: 14f20ecbfab44934e86f1ac7a3f745b989aa8190c6df119ff5aa8100fa248d93
* | | Gather forward references into a single place for the JSON code. Allowdrh2023-10-02
| | | | | | | | | | | | | | | JSONB arguments to json_array() and json_object() and similar. FossilOrigin-Name: c352201b8c299c330d9abbff6dbcbcbcf00ada53183d3cd91020ec772e066357
* | | Fix problems following OOM in JSONB parsing.drh2023-10-01
| | | | | | | | | FossilOrigin-Name: 0d8cd6b5fb592f88f593ceaad9cdfa95dcfdf14169c3a56a5becbd66d62fd02b
* | | Restore the trunk version of sqlite3_user_data(). Fix the xColumn for virtualdrh2023-09-30
| | | | | | | | | | | | | | | tables so that the sqlite3_context contains a valid but NULL user data pointer. FossilOrigin-Name: 15ffd932fecc82a5791b2024f55d2ec80887e8eb7345de68d6f5cac4912cfbe8
* | | Finish adding jsonb_ versions for all JSON routines that return JSON text.drh2023-09-30
| | | | | | | | | FossilOrigin-Name: 6daa7b69695e1b68dba317abbcad4d0205c91963d4a9eb2d595a3ec10fa0fdf4
* | | Update json_each() and json_tree() so that they work with JSONB inputs.drh2023-09-29
| | | | | | | | | FossilOrigin-Name: bb5e50ff56dff95d954aacdd4c5461790f953cef8d7b89da000d8d587fcdf9b8
* | | The u.zJContent field of JsonNode for a string or label should NOT includedrh2023-09-29
| | | | | | | | | | | | | | | | | | the quotation mark delimiters. Ever. This is an inefficiency that really ought to be fixed on trunk, but that can wait until this branch lands. FossilOrigin-Name: 96f545f6f839dab4829861361ee3d7a56840217c5f954f334616e77d23c5fe29
* | | Additional refactoring and cleanup.drh2023-09-29
| | | | | | | | | FossilOrigin-Name: 45dd1760875b1ad899a10189c6f5a0a9a0677903794fb5a06ffacd39952a7882
* | | Improvements to comments and procedure names for clarity in the JSONdrh2023-09-29
| | | | | | | | | | | | | | | implementation. FossilOrigin-Name: 9b620d813ef483f1277c1683c5e926a882f07f3b90804dea0c91b325ff8e45a4
* | | Describe the JSONB encoding in a header comment to the json.c source file.drh2023-09-29
| | | | | | | | | FossilOrigin-Name: 1c0cba3461d6111b3aeb77726880221f1240355f0b57e060febbdeb12fb688c0
* | | Fix some minor memory issues so that all legacy tests now pass.drh2023-09-28
| | | | | | | | | FossilOrigin-Name: 1744bfc669346ff221f28d45fd978863e876a2d2f0b82bcf0e5ee6f0326900cc
* | | Allow the sqlite3_user_data() function to be invoked with a NULL argumentdrh2023-09-28
| | | | | | | | | | | | | | | | | | or with an sqlite3_context pointer from a virtual table. It returns NULL in both cases. FossilOrigin-Name: 2f49687371ada65fef374336c28b352c48ab98dc31282ac82397035efe04ba11
* | | Merge trunk changes into the jsonb branch for the compiler warning fixesdrh2023-09-28
|\| | | | | | | | | | | | | | from two days ago. FossilOrigin-Name: cee113cc315b04fd75ccc172cf4529bf15b2050bf274433496c31a282e281ab8
| * | Clarify serialization API doc w.r.t. buffer validity and usage, instigated ↵larrybr2023-09-28
| | | | | | | | | | | | | | | by [forum:/forumpost/8922e2ad2ad41205|forum post 8922e2ad2ad41205]. No code changes. FossilOrigin-Name: b488b9fb71652eca90d2bf73d32f3d748badf517859dc833c58e021b0e017194
| * | Fix harmless compiler warnings in the testfixture testing utility.drh2023-09-26
| | | | | | | | | FossilOrigin-Name: 5a39a02d2dfd9ed6171cd0bd434b2bc268d0ed8ead6e1a396d1603266d9493ef