Skip to content
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 flaky continuous_aggs test #7373

Merged
merged 1 commit into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tsl/test/expected/continuous_aggs-14.out
Original file line number Diff line number Diff line change
Expand Up @@ -1758,7 +1758,7 @@ group by bucket, symbol;
NOTICE: refreshing continuous aggregate "cagg_index_default"
-- see corresponding materialization_hypertables
select view_name, materialization_hypertable_name from timescaledb_information.continuous_aggregates ca
where view_name like 'cagg_index_%';
where view_name like 'cagg_index_%' ORDER BY view_name;
view_name | materialization_hypertable_name
--------------------+---------------------------------
cagg_index_default | _materialized_hypertable_51
Expand Down
2 changes: 1 addition & 1 deletion tsl/test/expected/continuous_aggs-15.out
Original file line number Diff line number Diff line change
Expand Up @@ -1758,7 +1758,7 @@ group by bucket, symbol;
NOTICE: refreshing continuous aggregate "cagg_index_default"
-- see corresponding materialization_hypertables
select view_name, materialization_hypertable_name from timescaledb_information.continuous_aggregates ca
where view_name like 'cagg_index_%';
where view_name like 'cagg_index_%' ORDER BY view_name;
view_name | materialization_hypertable_name
--------------------+---------------------------------
cagg_index_default | _materialized_hypertable_51
Expand Down
2 changes: 1 addition & 1 deletion tsl/test/expected/continuous_aggs-16.out
Original file line number Diff line number Diff line change
Expand Up @@ -1758,7 +1758,7 @@ group by bucket, symbol;
NOTICE: refreshing continuous aggregate "cagg_index_default"
-- see corresponding materialization_hypertables
select view_name, materialization_hypertable_name from timescaledb_information.continuous_aggregates ca
where view_name like 'cagg_index_%';
where view_name like 'cagg_index_%' ORDER BY view_name;
view_name | materialization_hypertable_name
--------------------+---------------------------------
cagg_index_default | _materialized_hypertable_51
Expand Down
2 changes: 1 addition & 1 deletion tsl/test/expected/continuous_aggs-17.out
Original file line number Diff line number Diff line change
Expand Up @@ -1758,7 +1758,7 @@ group by bucket, symbol;
NOTICE: refreshing continuous aggregate "cagg_index_default"
-- see corresponding materialization_hypertables
select view_name, materialization_hypertable_name from timescaledb_information.continuous_aggregates ca
where view_name like 'cagg_index_%';
where view_name like 'cagg_index_%' ORDER BY view_name;
view_name | materialization_hypertable_name
--------------------+---------------------------------
cagg_index_default | _materialized_hypertable_51
Expand Down
2 changes: 1 addition & 1 deletion tsl/test/sql/continuous_aggs.sql.in
Original file line number Diff line number Diff line change
Expand Up @@ -1271,7 +1271,7 @@ group by bucket, symbol;

-- see corresponding materialization_hypertables
select view_name, materialization_hypertable_name from timescaledb_information.continuous_aggregates ca
where view_name like 'cagg_index_%';
where view_name like 'cagg_index_%' ORDER BY view_name;

-- now make sure a group index has been created when explicitly asked for
\x on
Expand Down
Loading