-
Notifications
You must be signed in to change notification settings - Fork 895
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
Fix EXPLAIN ANALYZE for compressed DML #6210
Conversation
@gayyappan, @antekresic: please review this pull request.
|
c8db381
to
bdab6c1
Compare
Codecov Report
@@ Coverage Diff @@
## main #6210 +/- ##
==========================================
- Coverage 81.48% 81.45% -0.03%
==========================================
Files 246 246
Lines 56978 56939 -39
Branches 12626 12610 -16
==========================================
- Hits 46429 46382 -47
+ Misses 8166 8147 -19
- Partials 2383 2410 +27
... and 46 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
EXPLAIN ANALYZE for compressed DML would error out with `bogus varno` error because we would modify the original expressions of the plan that were still referenced in nodes instead of adjusting copies and using those copies in our internal scans.
bdab6c1
to
a9d0515
Compare
Automated backport to 2.12.x not done: cherry-pick failed. Git status
|
This release contains bug fixes since the 2.12.1 release. We recommend that you upgrade at the next available opportunity. **Bugfixes** * timescale#6155 Align gapfill bucket generation with time_bucket * timescale#6210 Fix EXPLAIN ANALYZE for compressed DML
This release contains bug fixes since the 2.12.1 release. We recommend that you upgrade at the next available opportunity. **Bugfixes** * timescale#6155 Align gapfill bucket generation with time_bucket * timescale#6181 Ensure fixed_schedule field is populated * timescale#6210 Fix EXPLAIN ANALYZE for compressed DML
This release contains bug fixes since the 2.12.1 release. We recommend that you upgrade at the next available opportunity. **Bugfixes** * timescale#6155 Align gapfill bucket generation with time_bucket * timescale#6181 Ensure fixed_schedule field is populated * timescale#6210 Fix EXPLAIN ANALYZE for compressed DML
This release contains bug fixes since the 2.12.1 release. We recommend that you upgrade at the next available opportunity. **Bugfixes** * timescale#6155 Align gapfill bucket generation with time_bucket * timescale#6181 Ensure fixed_schedule field is populated * timescale#6210 Fix EXPLAIN ANALYZE for compressed DML
This release contains bug fixes since the 2.12.1 release. We recommend that you upgrade at the next available opportunity. **Bugfixes** * timescale#6155 Align gapfill bucket generation with time_bucket * timescale#6181 Ensure fixed_schedule field is populated * timescale#6210 Fix EXPLAIN ANALYZE for compressed DML
EXPLAIN ANALYZE for compressed DML would error out with
bogus varno
error because we would modify the original expressions of the plan that were still referenced in nodes instead of adjusting copies and using those copies in our internal scans.Fixes: #6175