catalog: protobuf and cluster versioning for table statistics forecasts#79025
catalog: protobuf and cluster versioning for table statistics forecasts#79025craig[bot] merged 1 commit intocockroachdb:masterfrom
Conversation
|
(Note that the first commit is #79009 which can be ignored.) |
msirek
left a comment
There was a problem hiding this comment.
Looks good to me. I'll leave it to the experts to approve it though.
Reviewable status:
complete! 0 of 0 LGTMs obtained (waiting on @ajwerner, @postamar, and @rytaft)
Add a field to the TableDescriptor for per-table statistics forecasting. We'll want this when backporting statistics forecasts to 22.1. Release note: None
63cbb77 to
9f1d234
Compare
mgartner
left a comment
There was a problem hiding this comment.
Reviewed 7 of 7 files at r2, all commit messages.
Reviewable status:complete! 0 of 0 LGTMs obtained (and 1 stale) (waiting on @ajwerner and @postamar)
ajwerner
left a comment
There was a problem hiding this comment.
Reviewable status:
complete! 1 of 0 LGTMs obtained (and 1 stale) (waiting on @postamar)
rytaft
left a comment
There was a problem hiding this comment.
Thanks!
bors r+
Reviewed all commit messages.
Reviewable status:complete! 1 of 0 LGTMs obtained (and 1 stale) (waiting on @postamar)
|
This PR was included in a batch that was canceled, it will be automatically retried |
|
Build failed (retrying...): |
|
Build succeeded: |
Add a new storage parameter (a.k.a. table setting) which can be used to override cluster setting `sql.stats.forecasts.enabled`. This builds on work done earlier in cockroachdb#79025 and cockroachdb#86932 so we don't have to do much, just wire it all together. Fixes: cockroachdb#86353 Release justification: Low-risk update to new functionality. Release note (sql change): Add a new table setting `sql_stats_forecasts_enabled` which controls whether statistics forecasts are generated for a specific table. When set, this overrides cluster setting `sql.stats.forecasts.enabled`.
Add a new storage parameter (a.k.a. table setting) which can be used to override cluster setting `sql.stats.forecasts.enabled`. This builds on work done earlier in cockroachdb#79025 and cockroachdb#86932 so we don't have to do much, just wire it all together. Fixes: cockroachdb#86353 Release justification: Low-risk update to new functionality. Release note (sql change): Add a new table setting `sql_stats_forecasts_enabled` which controls whether statistics forecasts are generated for a specific table. When set, this overrides cluster setting `sql.stats.forecasts.enabled`.
86986: sql/stats: add table setting to disable generation of stats forecasts r=rytaft,msirek a=michae2 Add a new storage parameter (a.k.a. table setting) which can be used to override cluster setting `sql.stats.forecasts.enabled`. This builds on work done earlier in #79025 and #86932 so we don't have to do much, just wire it all together. Fixes: #86353 Release justification: Low-risk update to new functionality. Release note (sql change): Add a new table setting `sql_stats_forecasts_enabled` which controls whether statistics forecasts are generated for a specific table. When set, this overrides cluster setting `sql.stats.forecasts.enabled`. Co-authored-by: Michael Erickson <michae2@cockroachlabs.com>
Add a field to the TableDescriptor for per-table statistics forecasting.
We'll want this when backporting statistics forecasts to 22.1.
Release note: None