-
Notifications
You must be signed in to change notification settings - Fork 1k
Remove column dropped from _timescaledb_catalog.chunk
#9142
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
base: main
Are you sure you want to change the base?
Conversation
|
@pnthao, @melihmutlu: please review this pull request.
|
34e44fd to
9b73e77
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9142 +/- ##
==========================================
+ Coverage 82.46% 82.70% +0.24%
==========================================
Files 244 244
Lines 47875 47754 -121
Branches 12207 12167 -40
==========================================
+ Hits 39478 39496 +18
+ Misses 3564 3516 -48
+ Partials 4833 4742 -91 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
9b73e77 to
24b6304
Compare
24b6304 to
7ce8c3c
Compare
7ce8c3c to
e604313
Compare
|
Why did we have the dropped flag at the first place? |
Old format continuous aggregates had references to the chunk they originated from so when we needed to drop chunks on hypertables with caggs we instead marked them as dropped |
e604313 to
307c956
Compare
With the removal of support for old format caggs we can remove support for chunks to be marked as dropped instead of always dropping from our catalog. This commit removes the code dealing with this variant and removes the `dropped` flag from our catalog.
307c956 to
9d5b4d3
Compare
gayyappan
left a comment
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.
Could you hold off on merging this change? There is a potential usecase for this.
what use case? the only use case we had was the old caggs format that was completely removed from our code base. |
With the removal of support for old format caggs we can remove
support for chunks to be marked as dropped instead of always dropping
from our catalog. This commit removes the code dealing with this
variant and removes the
droppedflag from our catalog.