-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Json Each and Json Tree #1088
Draft
pedrocarlo
wants to merge
10
commits into
tursodatabase:main
Choose a base branch
from
pedrocarlo:json-each-2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Json Each and Json Tree #1088
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR implements Json Each and Json Tree. My implementation almost matches the one with sqlite. It is different in two ways: in the assigning of arbitrary ids and in assigning path locators (which is believe is slightly buggy in sqlite). The arbitrary id assignment would not affect users of these functions are they are relative to each other, as what matters is that each item has a unique id assigned to them.
With regards to the path locators, I believe it is buggy as can be seen in the following screenshot:

As you can see, in the last two json_tree queries their path and fullkey values are equal where they should differ in their array locators. It seems that when you pass a path containing an array locator to json_tree, it will then substitute it with a
[0]
instead.I would like some guidance on how to proceed. Should I try to hack my implementation to accommodate with the way ids are incremented and with this path irregularity? Or should we stick with my implementation for now?
After a response, I intend to add and modify the tests depending on the direction we wish to take, as currently they won't pass due to this divergence in implementation.
Also, this PR depends on #1054 to be merged to be able to return Json instead of Text for the value column.