-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
types: remove no longer used version gate #77260
Conversation
With this change, we get
which seems good on a quick glance. At the moment, the
cc @rickystewart @irfansharif @ajwerner do you have some hints? |
Sorry, the last commit breaks the bazel build, edited above. |
I think you need to add |
Yeah, that change was necessary but not sufficient. I am able to build
|
After you apply that change you may still have to |
Thanks Ricky! |
cf5c96b
to
9aed8f9
Compare
552ec70
to
4165013
Compare
In the end, the move of This PR is in a draft mode for the moment in order to not ping many aliases based on the first commit. |
742969d
to
9b44655
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.
there is an ask in place to not remove this code even if it's
not used at the moment (so that we have the necessary infra in place
if/when the need arises)
Could always resurrect it from git history. Last commit LGTM.
This is done to break the dependency of `sql/types` on `roachpb` (which is a part of the effort to clean up the dependencies of `execgen`). This commit brings the dependencies of `execgen` to a much more reasonable set. Although there is an ask in place to not remove this code even if it's not used at the moment (so that we have the necessary infra in place if/when the need arises), in order to keep the functionality we would need to pull out `roachpb.Version` out of `roachpb`, and I don't want to embark on that since we're in stability period. Release note: None Release justification: low risk change to clean up the dependencies.
TFTR! bors r+ |
Build succeeded: |
This is done to break the dependency of
sql/types
onroachpb
(whichis a part of the effort to clean up the dependencies of
execgen
). Thiscommit brings the dependencies of
execgen
to a much more reasonableset.
Although there is an ask in place to not remove this code even if it's
not used at the moment (so that we have the necessary infra in place
if/when the need arises), in order to keep the functionality we would
need to pull out
roachpb.Version
out ofroachpb
, and I don't wantto embark on that since we're in stability period.
Fixes: #77234.
Release note: None
Release justification: low risk change to clean up the dependencies.