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

Various changes for pg11 #64

Merged
merged 3 commits into from
Jul 14, 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
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
strategy:
matrix:
postgres_major_version: [
"11",
"12",
"13",
"14",
Expand Down
7 changes: 4 additions & 3 deletions powa--5.0.0dev.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2476,7 +2476,7 @@ BEGIN
-- There are stored dbnames and users provided some. Keep the module
-- activated and simply remove the specified dbnames
ASSERT v_enabled IS TRUE, 'Module should be enabled';
SELECT array_agg(dbname)
SELECT array_agg(dbname ORDER BY dbname)
FROM (
SELECT unnest(v_dbnames)
EXCEPT
Expand Down Expand Up @@ -4617,8 +4617,9 @@ BEGIN
s.datid, s.numbackends, s.xact_commit, s.xact_rollback,
s.blks_read, s.blks_hit, s.tup_returned, s.tup_fetched,
s.tup_inserted, s.tup_updated, s.tup_deleted, s.conflicts,
s.temp_files, s.temp_bytes, s.deadlocks, 0 AS checksum_failures,
NULL::double precision AS checksum_last_failure,
s.temp_files, s.temp_bytes, s.deadlocks,
0::bigint AS checksum_failures,
NULL::timestamptz AS checksum_last_failure,
s.blk_read_time, s.blk_write_time,
NULL::double precision AS session_time,
NULL::double precision AS active_time,
Expand Down