pgsql: Change pg_listener attribute number constants to match the usual

Started by Peter Eisentrautabout 17 years ago1 messagescomitters
Jump to latest
#1Peter Eisentraut
peter_e@gmx.net

Log Message:
-----------
Change pg_listener attribute number constants to match the usual pattern

It appears that, for no particularly good reason, pg_listener.h deviates from
the usual convention for declaring attribute number constants. Normally, it's

#define Anum_{catalog-name}_{column-name} {attribute-number}

pg_listener.h, however substitutes a different string that is similar, but not
the same as, the column name. This change fixes that.

Author: Robert Haas <robertmhaas@gmail.com>

Modified Files:
--------------
pgsql/src/backend/commands:
async.c (r1.147 -> r1.148)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/async.c?r1=1.147&amp;r2=1.148)
pgsql/src/include/catalog:
pg_listener.h (r1.25 -> r1.26)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/pg_listener.h?r1=1.25&amp;r2=1.26)