-
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
sql: add SET CLUSTER SETTING wrapper to alter system.settings #14691
Conversation
6e1d578
to
de841af
Compare
Reviewed 1 of 1 files at r1, 5 of 5 files at r2, 2 of 2 files at r3. pkg/sql/set.go, line 104 at r3 (raw file):
nit: return here only if err is non-nil, and then return nil at the bottom? pkg/sql/set.go, line 106 at r3 (raw file):
seems important enough to do now pkg/sql/set.go, line 122 at r3 (raw file):
ditto Comments from Reviewable |
Review status: 1 of 8 files reviewed at latest revision, 3 unresolved discussions. pkg/sql/set.go, line 104 at r3 (raw file): Previously, tamird (Tamir Duberstein) wrote…
Done. pkg/sql/set.go, line 106 at r3 (raw file): Previously, tamird (Tamir Duberstein) wrote…
i've got it queued up locally for a fast follow, but obviously it depends on the registry in #14688, to lookup the types to do the validation, plus I wanted to keep individual changes a manageable size. pkg/sql/set.go, line 122 at r3 (raw file): Previously, tamird (Tamir Duberstein) wrote…
ditto. Comments from Reviewable |
Reviewed 7 of 7 files at r4, 5 of 5 files at r5, 2 of 2 files at r6. pkg/sql/set.go, line 106 at r3 (raw file): Previously, dt (David Taylor) wrote…
Understood, and yet I think it should go with this =/ pkg/sql/set.go, line 113 at r6 (raw file):
:= Comments from Reviewable |
Currently a very thin wrapper around just upserting strings, just to get the various boilerplate and plumbing in place.
Review status: 1 of 9 files reviewed at latest revision, 3 unresolved discussions. pkg/sql/set.go, line 106 at r3 (raw file): Previously, tamird (Tamir Duberstein) wrote…
Done. Comments from Reviewable |
Review status: 1 of 9 files reviewed at latest revision, 3 unresolved discussions, some commit checks failed. pkg/sql/set.go, line 113 at r6 (raw file): Previously, tamird (Tamir Duberstein) wrote…
Done. Comments from Reviewable |
Reviewed 7 of 7 files at r7, 5 of 5 files at r8, 2 of 2 files at r9, 3 of 3 files at r10. pkg/sql/set.go, line 99 at r10 (raw file):
setting '%s' pkg/sql/set.go, line 142 at r10 (raw file):
Comments from Reviewable |
Review status: all files reviewed at latest revision, 2 unresolved discussions, all commit checks successful. pkg/sql/set.go, line 99 at r10 (raw file): Previously, tamird (Tamir Duberstein) wrote…
Done. pkg/sql/set.go, line 142 at r10 (raw file): Previously, tamird (Tamir Duberstein) wrote…
Done. Comments from Reviewable |
TFTR! Review status: 8 of 9 files reviewed at latest revision, 2 unresolved discussions. Comments from Reviewable |
Reviewed 1 of 1 files at r11. Comments from Reviewable |
Currently a very thin wrapper around just upserting strings, just to get the various boilerplate and plumbing in place.