Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c10575f

Browse files
committed
Rewrite comment code for better modularity, and add necessary locking.
Review by Alvaro Herrera, KaiGai Kohei, and Tom Lane.
1 parent 73b3bd5 commit c10575f

File tree

5 files changed

+829
-824
lines changed

5 files changed

+829
-824
lines changed

src/backend/catalog/Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Makefile for backend/catalog
44
#
5-
# $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.78 2010/05/13 11:49:48 petere Exp $
5+
# $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.79 2010/08/27 11:47:41 rhaas Exp $
66
#
77
#-------------------------------------------------------------------------
88

@@ -11,9 +11,10 @@ top_builddir = ../../..
1111
include $(top_builddir)/src/Makefile.global
1212

1313
OBJS = catalog.o dependency.o heap.o index.o indexing.o namespace.o aclchk.o \
14-
pg_aggregate.o pg_constraint.o pg_conversion.o pg_depend.o pg_enum.o \
15-
pg_inherits.o pg_largeobject.o pg_namespace.o pg_operator.o pg_proc.o \
16-
pg_db_role_setting.o pg_shdepend.o pg_type.o storage.o toasting.o
14+
objectaddress.o pg_aggregate.o pg_constraint.o pg_conversion.o \
15+
pg_depend.o pg_enum.o pg_inherits.o pg_largeobject.o pg_namespace.o \
16+
pg_operator.o pg_proc.o pg_db_role_setting.o pg_shdepend.o pg_type.o \
17+
storage.o toasting.o
1718

1819
BKIFILES = postgres.bki postgres.description postgres.shdescription
1920

0 commit comments

Comments
 (0)