Remove ObjectClass type
authorPeter Eisentraut <peter@eisentraut.org>
Tue, 26 Mar 2024 07:51:18 +0000 (08:51 +0100)
committerPeter Eisentraut <peter@eisentraut.org>
Tue, 26 Mar 2024 09:08:56 +0000 (10:08 +0100)
commit89e5ef7e21812916c9cf9fcf56e45f0f74034656
tree4ba9e8a3aadbc9c114f9f5a68512b0e954a853ef
parent8c4f2d5475b9f0411baf38590c054ba1fb566780
Remove ObjectClass type

ObjectClass is an enum whose values correspond to catalog OIDs.  But
the extra layer of redirection, which is used only in small parts of
the code, and the similarity to ObjectType, are confusing and
cumbersome.

One advantage has been that some switches processing the OCLASS enum
don't have "default:" cases.  This is so that the compiler tells us
when we fail to add support for some new object class.  But you can
also handle that with some assertions and proper test coverage.  It's
not even clear how strong this benefit is.  For example, in
AlterObjectNamespace_oid(), you could still put a new OCLASS into the
"ignore object types that don't have schema-qualified names" case, and
it might or might not be wrong.  Also, there are already various
OCLASS switches that do have a default case, so it's not even clear
what the preferred coding style should be.

Reviewed-by: jian he <jian.universality@gmail.com>
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://www.postgresql.org/message-id/flat/CAGECzQT3caUbcCcszNewCCmMbCuyP7XNAm60J3ybd6PN5kH2Dw%40mail.gmail.com
src/backend/catalog/dependency.c
src/backend/catalog/objectaddress.c
src/backend/commands/alter.c
src/backend/commands/event_trigger.c
src/backend/commands/tablecmds.c
src/include/catalog/dependency.h
src/include/commands/event_trigger.h
src/tools/pgindent/typedefs.list