aboutsummaryrefslogtreecommitdiff
path: root/src/json.c
Commit message (Collapse)AuthorAge
...
* Allow the labels on JSON objects to be unquoted identifier names.drh2023-04-27
| | | FossilOrigin-Name: fb428db3f64f148ab9a3478fdcc8b3733e58102b3c8895a482e2551d974d5661
* Performance optimization in the JSON parser.drh2023-04-27
| | | FossilOrigin-Name: 5a88ba743f55d45b1c0ce0090bb3b396bcf7fcf7b3bcb989aaf30b8bb772599e
* Permit JSON5 whitespace in all contexts of objects and arrays.drh2023-04-27
| | | FossilOrigin-Name: 93f3ab26b57c0469862a56e97d4b3c796b27f9f582046fcff1f2aa8d8910c550
* Translate JSON5-only string literal escape sequences into the JSON equivalents.drh2023-04-27
| | | FossilOrigin-Name: 14e82f36eed31af1237898728bf353b968523c62b1f8d1d90dbbabd92d0c2834
* Implement some of the JSON5 enhancements to string and numeric literals.drh2023-04-26
| | | | | This is an incremental check-in of work in progress. FossilOrigin-Name: 9508efa9d61c0ff0eb73100dd52889dadc5fa2a2091b944a9b8a74e8a5c50e82
* Partial implementation of JSON5 numeric literal extensions. Use a switch()drh2023-04-26
| | | | | statement in the parser for better performance. FossilOrigin-Name: 78404dc37024cad5fe7eacf78ea85b56f08b129a1b9a046c3e1b11275068a485
* Work toward implementing JSON5 whitespace. Untested and incomplete.drh2023-04-26
| | | FossilOrigin-Name: d262c059455ebe0650a45a6c1c04d1baf9609c635df352732dd192426e1bdc39
* The json_valid() function only returns true for pure JSON. JSON5 (ordrh2023-04-25
| | | | | | | | at least that subset of JSON5 that has been so far implemented) is accepted by all routines, but json_valid() still returns false for JSON5 inputs. The new json_valid5(X) routine returns true or false if X is or is not valid JSON5. All of this is experimental and subject to change. FossilOrigin-Name: 5d33ab77800765c8b3a13ffcc02ba8a348d71b2b425924560418b517d723494d
* Allow trailing commas in objects and arrays of JSON.drh2023-04-24
| | | FossilOrigin-Name: 4031b231c223db598b45dbd192b027a99a9b82a981d43c75f723a3fb06720b82
* More off-by-one errors in the new JSON parsing.drh2023-04-02
| | | FossilOrigin-Name: dbc99662087b63c9ed5b398535a6091fc2c5e507907dd1fcb7ad0b6ab3f17144
* Fix an off-by-one error in the recognition of -Infinity.drh2023-04-02
| | | FossilOrigin-Name: f7ebf3e6286ddc8cdaa9446235407785d1be2be2d9992e21ef59fcd655f68432
* Allow special floating-point value names in JSON: "inf", "-inf", "infinity",drh2023-04-01
| | | | | | | "-infinity", "nan", "qnan", and "snan". All are converted into valid JSON values: 9e999, -9e999, or null. Requires the SQLITE_ENABLE_JSON_NAN_INF compile-time option to operate. FossilOrigin-Name: fc8793e5acac7351749e360c6bace5d5a8b3de3aa600ae23e260557db650c461
* Fix json rendering so that it shows positive and negative infinity asdrh2023-03-17
| | | | | 9.0e+999 and -9.0e+999 respectively. FossilOrigin-Name: efce4690a52592c4f5fc7d023eebe771b0e615bb03c0fe203493f853b28e8f85
* The json_group_array(), json_group_object(), and fts5_source_id() functionsdrh2023-01-20
| | | | | should all be deterministic and innocuous. FossilOrigin-Name: edcb83fa0d3c832d044b267d608fed31a2ac841b81c7c9406b2136ac43d61a1a
* Update virtual tables json_each and json_tree so that adding "ORDER BY ↵dan2023-01-17
| | | | | rowid" to a query does not require an external sort. FossilOrigin-Name: ce18f0ed684824e67ed6c09acab8e735fef2c52b2ed32270dee1a2a67802c59b
* When constructing the JSON Path for the "fullpath" column of thedrh2022-04-04
| | | | | | json_tree() and json_each() table-valued functions, be sure to quote object labels where necessary. FossilOrigin-Name: 0fbbe7881cadf0b3c211653c7a0797e0a90c7c24da78ecc8a27140c05f89f2ed
* Fix the JSON Path parser so that it will accept zero-length object labels.drh2022-04-04
| | | | | [forum/forumpost/c082aeab43|Forum thread c082aeab43]. FossilOrigin-Name: 84fe95d2a5b4d232d657e3b8110027a698a9bcd597f205cc535cfa97bc299f21
* Fix compiler warnings.drh2022-03-08
| | | FossilOrigin-Name: 5e30c6ea707f9d381127e8b2bb59e0b39bc00997da2c14d32a0e302d0121203b
* Fix various harmless compiler warnings.drh2022-02-04
| | | FossilOrigin-Name: 70049342d5ad57ea3e863bba19253934b868bacdd1c26c9371bac024a829badf
* Fix incorrect testcase() and assert() macros in json.c. They were not causingdrh2022-01-17
| | | | | | problems. The assert() was simply unreachable. The testcase() added an unreachable condition. FossilOrigin-Name: 5623497adc8af9950fd79392000a68ba6fdca43594603eadaa7e19c8fb845a7d
* Remove vestigial traces of json_ntype().drh2022-01-11
| | | FossilOrigin-Name: 8da07c8b09ff83436a34e539e4cce8ba9524390017ca14f4af8344a12e351550
* Fix the PG-compatible -> and ->> path parsing.drh2022-01-11
| | | FossilOrigin-Name: 22d5138315fb77eeea1c7e66ccc4190bcae18d058a99aa37ddd119e54b52f723
* Implement the new PG-compliant versions of the -> and ->> operators.drh2022-01-10
| | | FossilOrigin-Name: 39eff3b9bf1f318d3606d8e5361a2adb2ba8bc1ca2a436ce4f9a204aa4cf20dd
* Merge the JSON function enhancements from the json-enhancements branch intodrh2022-01-08
| | | | | json-in-core. FossilOrigin-Name: e116501c2f0e594eb7a3dd804daa943cc508f32ded3078aed21b695ec83bcd4c
* An attempt to integrate the JSON functions directly into the SQLite core,drh2022-01-06
rather than holding them as an extension. FossilOrigin-Name: 583b47d865fb8d2c9ae4d3a4e70356a8a758978efb0a282f6b19775bf41fb748