Skip to content

Commit

Permalink
Remove useless message from tsl_cagg_try_repair
Browse files Browse the repository at this point in the history
The PR #3899 introduced a new function named `tsl_cagg_try_repair` to
try to fix buggy Continuous Aggregates that lead to segfault on a select
query. It added an INFO message when skipping the check for Continuous
Aggregate that don't have partials and it's annoying during the
upgrade/downgrade the extension specially if you have many Continuous
Aggregate.

Remove this message because it's completely useless.
  • Loading branch information
fabriziomello committed Oct 26, 2022
1 parent da9af2c commit 2e7d7ee
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions tsl/src/continuous_aggs/create.c
Original file line number Diff line number Diff line change
Expand Up @@ -2421,13 +2421,9 @@ cagg_rebuild_view_definition(ContinuousAgg *agg, Hypertable *mat_ht)
}

if (finalized)
{ /* This continuous aggregate does not have partials, do not check for defects. */
{
/* This continuous aggregate does not have partials, do not check for defects. */
relation_close(user_view_rel, NoLock);
elog(INFO,
"Skipping check for defects of aggregate without partials "
"\"%s.%s\"",
schema,
relname);
return;
}

Expand Down

0 comments on commit 2e7d7ee

Please sign in to comment.