Closed dpage closed 2 years ago
Comment migrated from Redmine: https://redmine.postgresql.org/issues/4087#note-1 Originally created by Michael Banck at 2019-03-15 14:32:54 UTC.
This is a regression from pgadmin3 where the DEFAULT PRIVILEGES for SEQUENCES where displayed correctly.
Comment migrated from Redmine: https://redmine.postgresql.org/issues/4087#note-2 Originally created by Aditya Toshniwal at 2019-03-22 10:20:50 UTC.
Redmine ticket header update:
Name | Old Value | New Value |
---|---|---|
Sprint changed | Ready |
Comment migrated from Redmine: https://redmine.postgresql.org/issues/4087#note-3 Originally created by Akshay Joshi at 2019-04-10 09:50:17 UTC.
Redmine ticket header update:
Name | Old Value | New Value |
---|---|---|
Sprint changed | Ready | EDB Sprint 38 |
Comment migrated from Redmine: https://redmine.postgresql.org/issues/4087#note-4 Originally created by Khushboo Vashi at 2019-04-22 05:47:33 UTC.
Redmine ticket header update:
Name | Old Value | New Value |
---|---|---|
Status changed | New | In Progress |
Assigned To changed | Khushboo Vashi |
Comment migrated from Redmine: https://redmine.postgresql.org/issues/4087#note-5 Originally created by Khushboo Vashi at 2019-04-22 06:21:19 UTC.
Patch sent. https://www.postgresql.org/message-id/CAFOhELcHn30bf=S-3810w7FcwZVGiYb1oxeaYd3roTGt10A6oA@mail.gmail.com
Comment migrated from Redmine: https://redmine.postgresql.org/issues/4087#note-6 Originally created by Khushboo Vashi at 2019-04-22 06:54:58 UTC.
Applied in changeset commit:ecded183338192ff6110c8e16da6823511d9d6f9.
Redmine ticket header update:
Name | Old Value | New Value |
---|---|---|
Status changed | In Progress | In Testing |
Done Ratio changed | 0 | 90 |
Comment migrated from Redmine: https://redmine.postgresql.org/issues/4087#note-7 Originally created by Fahar Abbas at 2019-04-22 10:14:11 UTC.
This is Resolved in latest Commit (commit ecded183338192ff6110c8e16da6823511d9d6f9)
Redmine ticket header update:
Name | Old Value | New Value |
---|---|---|
Status changed | In Testing | Resolved |
Done Ratio changed | 90 | 100 |
Issue closed on Redmine.
Issue migrated from Redmine: https://redmine.postgresql.org/issues/4087 Originally created by Michael Banck at 2019-03-15 14:31:00 UTC.
Go to the public schema in a database, open the SQL tab.
You see the usual SQL commands, ending with "GRANT ALL ON SCHEMA public TO PUBLIC;"
Issue the command "ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT UPDATE ON SEQUENCES TO postgres;"
The SQL tab has not changed even on refresh, the ALTER DEFAULT PRIVILEGES is not shown while a local
\dpp
in psql does show itIssue the command "ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT, UPDATE ON SEQUENCES TO postgres;"
The SQL tab now shows the following on refresh, without UPDATE:
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON SEQUENCES TO postgres;