Skip to content

Commit

Permalink
fix typo in part config assignment (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHend committed Aug 15, 2024
1 parent 04a06b6 commit 78a766b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pgmq-extension/sql/pgmq--1.4.0--1.4.1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ BEGIN
retention_keep_table = false,
retention_keep_index = true,
automatic_maintenance = 'on'
WHERE parent_table = 'pgmq.q_%I';
WHERE parent_table = 'pgmq.%I';
$QUERY$,
retention_interval, qtable
);
Expand Down
2 changes: 1 addition & 1 deletion pgmq-extension/sql/pgmq.sql
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ BEGIN
retention_keep_table = false,
retention_keep_index = true,
automatic_maintenance = 'on'
WHERE parent_table = 'pgmq.q_%I';
WHERE parent_table = 'pgmq.%I';
$QUERY$,
retention_interval, qtable
);
Expand Down

0 comments on commit 78a766b

Please sign in to comment.