Skip to content
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

Merged
merged 1 commit into from
Feb 24, 2025
Merged

Conversation

normanchenn
Copy link
Member

@normanchenn normanchenn commented Jan 31, 2025

As part of work to implement jsonpath queries, this PR implements thejsonpath 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: #22513
Release note (sql change): Adding jsonpath type, without parsing or evaluation. Currently accepts any non-empty string.

@cockroach-teamcity
Copy link
Member

This change is Reviewable

@normanchenn normanchenn force-pushed the norman/jsonpath-type branch 13 times, most recently from fcf8df3 to 8705a1b Compare February 4, 2025 20:12
Copy link
Member

@yuzefovich yuzefovich left a 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: :shipit: 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.

@normanchenn normanchenn force-pushed the norman/jsonpath-type branch 7 times, most recently from 8cfdf21 to 729b6ed Compare February 5, 2025 23:53
@normanchenn normanchenn marked this pull request as ready for review February 6, 2025 01:34
@normanchenn normanchenn requested review from a team as code owners February 6, 2025 01:34
@normanchenn normanchenn requested a review from a team February 6, 2025 01:34
@normanchenn normanchenn requested review from a team as code owners February 6, 2025 01:34
@normanchenn normanchenn force-pushed the norman/jsonpath-type branch 3 times, most recently from f71c071 to e11f2d4 Compare February 19, 2025 16:38
Copy link
Member Author

@normanchenn normanchenn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewable status: :shipit: 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 the default case below.

Done.

Copy link
Member

@yuzefovich yuzefovich left a 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 :lgtm:

Reviewed 15 of 15 files at r8, all commit messages.
Reviewable status: :shipit: 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).

@normanchenn normanchenn requested a review from a team as a code owner February 21, 2025 22:27
@normanchenn normanchenn removed the request for review from a team February 21, 2025 22:27
@normanchenn
Copy link
Member Author

TFTR!

bors r+

@craig
Copy link
Contributor

craig bot commented Feb 21, 2025

Build failed (retrying...):

@craig
Copy link
Contributor

craig bot commented Feb 22, 2025

Build failed (retrying...):

@msbutler
Copy link
Collaborator

bors r-

looks like this failed the check generated code check

@craig
Copy link
Contributor

craig bot commented Feb 22, 2025

Canceled.

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.
@normanchenn
Copy link
Member Author

bors r+

@craig craig bot merged commit 3cf7434 into cockroachdb:master Feb 24, 2025
24 checks passed
iskettaneh pushed a commit to iskettaneh/cockroach that referenced this pull request Feb 26, 2025
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]>
@normanchenn normanchenn mentioned this pull request Mar 10, 2025
32 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants