-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
sql: add jsonpath type #140204
sql: add jsonpath type #140204
Conversation
fcf8df3
to
8705a1b
Compare
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.
Nice! Looks like there are only a handful of failures left. On a quick glance I only spotted one issue.
Reviewed 4 of 67 files at r1.
Reviewable status:complete! 0 of 0 LGTMs obtained (waiting on @normanchenn)
pkg/sql/catalog/colinfo/column_type_properties.go
line 52 at r1 (raw file):
types.JsonFamily, types.CollatedStringFamily, types.JsonpathFamily:
nit: this should be false for jsonpath. "Composite key encoding" is a special concept for some data types where different values of that type might have the same key encoding, yet we need to store them differently (for example, 0::FLOAT and -0::FLOAT are equal to each other, so they must have the same key encoding - used when building forward indexes - yet we need to differentiate the two). Jsonpath will only have value encoding (at least initially), so compositeness of key is not applicable to it.
8cfdf21
to
729b6ed
Compare
f71c071
to
e11f2d4
Compare
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.
Reviewable status:
complete! 0 of 0 LGTMs obtained (waiting on @normanchenn and @yuzefovich)
pkg/sql/distsql_physical_planner.go
line 360 at r7 (raw file):
Previously, yuzefovich (Yahor Yuzefovich) wrote…
Do you remember what prompted this addition? The fact that we don't have an encoding? Consider adding a comment explaining the reason for why we need to disable distsql.
Yeah, there were some distsql tests that failed because we need an encoding (see https://mesolite.cluster.engflow.com/invocations/default/28df9356-d045-490d-9413-c993df93d3a2) - added a comment as well
pkg/sql/catalog/colinfo/col_type_info.go
line 110 at r7 (raw file):
Previously, yuzefovich (Yahor Yuzefovich) wrote…
I think if you remove this addition here, we won't need to make any changes in
create_table.go
to disallow columns of this type - we should fall back to thedefault
case below.
Done.
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.
Nice work figuring all the things out! I have a couple more nits, but they are non-blocking, so
Reviewed 15 of 15 files at r8, all commit messages.
Reviewable status:complete! 1 of 0 LGTMs obtained (waiting on @normanchenn)
pkg/sql/catalog/colinfo/col_type_info.go
line 155 at r8 (raw file):
// ColumnTypeIndexesAreSupported returns whether indexes are supported for type t. func ColumnTypeIndexesAreSupported(t *types.T) bool {
nit: this function is no longer used. (The linter in the CI doesn't complain because it is exported.)
pkg/sql/sem/tree/type_check.go
line 3817 at r8 (raw file):
// the relevant comparison overloads because we rely on their existence in // various locations throughout the codebase. func checkJsonpathComparison(op treecmp.ComparisonOperatorSymbol, left, right *types.T) error {
nit: should we refactor existing checkRefCursorComparison
to be the shared helper that would take an extra argument (either RefCursor of Jsonpath type) to indicate which one we're validating? For example, this will ensure that we also will check tuples for containing jsonpath (which we currently don't do).
e11f2d4
to
1f73110
Compare
TFTR! bors r+ |
Build failed (retrying...): |
Build failed (retrying...): |
bors r- looks like this failed the |
Canceled. |
1f73110
to
3b339fe
Compare
As part of work to implement jsonpath queries, this PR implements the `jsonpath` type within CockroachDB. There is no parsing or evaluation added, and the `jsonpath` will currently accept any non-empty string. Table creation with jsonpath columns are not supported as of now until an encoding and decoding schema is determined. Indexes are not supported for `jsonpath` columns when they will be introduced. Part of: cockroachdb#22513 Release note (sql change): Adding jsonpath type, without parsing, evaluation, or table creation. Currently accepts any non-empty string.
3b339fe
to
2dda5fd
Compare
bors r+ |
140204: sql: add jsonpath type r=normanchenn a=normanchenn As part of work to implement jsonpath queries, this PR implements the`jsonpath` type within CockroachDB. There is no parsing or evaluation added, and the `jsonpath` will currently accept any non-empty string. Indexes are not currently supported for `jsonpath` columns. Part of: cockroachdb#22513 Release note (sql change): Adding jsonpath type, without parsing or evaluation. Currently accepts any non-empty string. Co-authored-by: Norman Chen <[email protected]>
As part of work to implement jsonpath queries, this PR implements the
jsonpath
type within CockroachDB. There is no parsing or evaluation added, and thejsonpath
will currently accept any non-empty string. Indexes are not currently supported forjsonpath
columns.Part of: #22513
Release note (sql change): Adding jsonpath type, without parsing or evaluation. Currently accepts any non-empty string.