-
Notifications
You must be signed in to change notification settings - Fork 938
Include cagg name in timescaledb_information.jobs #7976
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
0053e99
to
db75c01
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7976 +/- ##
==========================================
+ Coverage 80.06% 82.14% +2.07%
==========================================
Files 190 250 +60
Lines 37181 46284 +9103
Branches 9450 11613 +2163
==========================================
+ Hits 29770 38021 +8251
- Misses 2997 3662 +665
- Partials 4414 4601 +187 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
abee5d3
to
bbe3458
Compare
25a42ed
to
871fd95
Compare
871fd95
to
a8c0b36
Compare
This seems to be implemented in #7976. |
Might be better to spell out details and avoid abbreviations, e.g., something along these lines (I usually elaborate a lot in my comments since I find it useful when you want to figure out why you did something as well as what you did, but you don't have to do that). Updated:
|
In the timescaledb_information.jobs view, it is not possible to see the continuous aggregate name for jobs related to continuous aggregates and it is necessary to use the materialized table id to look up the actual continuous aggregate. Since hypertable_schema and hypertable_name columns contain the materialized hypertable for the continuous aggregate, which are considered internal objects and not very useful except for looking up the continuous aggregate, we store the continuous aggregate name and schema in these columns.
a8c0b36
to
95b3f46
Compare
In the timescaledb_information.jobs view, it is not possible to see the
continuous aggregate name for jobs related to continuous aggregates and
it is necessary to use the materialized table id to look up the actual
continuous aggregate. Since hypertable_schema and hypertable_name
columns contain the materialized hypertable for the continuous
aggregate, which are considered internal objects and not very useful
except for looking up the continuous aggregate, we store the continuous
aggregate name and schema in these columns.