Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Restructure AclItem representation so that we can have more than eight | Tom Lane | 2002-04-21 | |
| | | | | | | | | | different privilege bits (might as well make use of the space we were wasting on padding). EXECUTE and USAGE bits for procedures, languages now are separate privileges instead of being overlaid on SELECT. Add privileges for namespaces and databases. The GRANT and REVOKE commands work for these object types, but we don't actually enforce the privileges yet... | |||
* | The contents of command.c, creatinh.c, define.c, remove.c and rename.c | Tom Lane | 2002-04-15 | |
have been divided according to the type of object manipulated - so ALTER TABLE code is in tablecmds.c, aggregate commands in aggregatecmds.c and so on. A few common support routines remain in define.c (prototypes in src/include/commands/defrem.h). No code has been changed except for includes to reflect the new files. The prototypes for aggregatecmds.c, functioncmds.c, operatorcmds.c, and typecmds.c remain in src/include/commands/defrem.h. From John Gray <jgray@azuli.co.uk> |