-
- Downloads
Clean up some loose ends from the column privileges patch: add
has_column_privilege and has_any_column_privilege SQL functions; fix the information_schema views that are supposed to pay attention to column privileges; adjust pg_stats to show stats for any column you have select privilege on; and fix COPY to allow copying a subset of columns if the user has suitable per-column privileges for all the columns. To improve efficiency of some of the information_schema views, extend the has_xxx_privilege functions to allow inquiring about the OR of a set of privileges in just one call. This is just exposing capability that already existed in the underlying aclcheck routines. In passing, make the information_schema views report the owner's own privileges as being grantable, since Postgres assumes this even when the grant option bit is not set in the ACL. This is a longstanding oversight. Also, make the new has_xxx_privilege functions for foreign data objects follow the same coding conventions used by the older ones. Stephen Frost and Tom Lane
Showing
- doc/src/sgml/func.sgml 102 additions, 33 deletionsdoc/src/sgml/func.sgml
- doc/src/sgml/information_schema.sgml 12 additions, 17 deletionsdoc/src/sgml/information_schema.sgml
- src/backend/catalog/aclchk.c 59 additions, 40 deletionssrc/backend/catalog/aclchk.c
- src/backend/catalog/information_schema.sql 113 additions, 99 deletionssrc/backend/catalog/information_schema.sql
- src/backend/catalog/system_views.sql 2 additions, 2 deletionssrc/backend/catalog/system_views.sql
- src/backend/commands/copy.c 28 additions, 11 deletionssrc/backend/commands/copy.c
- src/backend/utils/adt/acl.c 1028 additions, 348 deletionssrc/backend/utils/adt/acl.c
- src/include/catalog/catversion.h 2 additions, 2 deletionssrc/include/catalog/catversion.h
- src/include/catalog/pg_proc.h 38 additions, 1 deletionsrc/include/catalog/pg_proc.h
- src/include/utils/builtins.h 19 additions, 1 deletionsrc/include/utils/builtins.h
- src/test/regress/expected/foreign_data.out 4 additions, 4 deletionssrc/test/regress/expected/foreign_data.out
- src/test/regress/expected/privileges.out 10 additions, 0 deletionssrc/test/regress/expected/privileges.out
- src/test/regress/expected/rules.out 3 additions, 3 deletionssrc/test/regress/expected/rules.out
- src/test/regress/sql/privileges.sql 8 additions, 0 deletionssrc/test/regress/sql/privileges.sql
Loading
Please register or sign in to comment