-
-
Notifications
You must be signed in to change notification settings - Fork 220
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
qualify json_table columns #1795
Conversation
How hard would it be to implement these instead of just skipping them? Seems like customers are going to be back for this. |
That's a good point. Some of these like |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. My one reaching ask would be to try adding adding experimental versions for some of these engine tests, see if it runs, if there is any low hanging fruit to replicate on new name res path
func TestJSONTableScripts_Experimental(t *testing.T) {
enginetest.TestJSONTableScripts(t, enginetest.NewMemoryHarness("simple", 1, testNumPartitions, true, nil).WithVersion(sql.VersionExperimental))
}
Agreed this should be a new PR. |
Likely due to improved aliasing code, it's simple to qualify columns for
json_table
.This PR
for ordinality
nested paths
default
error
MySQL docs for missing functionality: https://dev.mysql.com/doc/refman/8.0/en/json-table-functions.html
Fix for: dolthub/dolt#6004