diff options
author | Robert Haas | 2011-10-20 03:25:20 +0000 |
---|---|---|
committer | Robert Haas | 2011-10-20 03:27:19 +0000 |
commit | 82a4a777d94bec965ab2f1d04b6e6a3f0447b377 (patch) | |
tree | b3560173b695b8391ca81edf47c4b364005a608b /src/backend/commands/Makefile | |
parent | 3301c83536e9da1e573e24ded2e610062dbf9cdc (diff) |
Consolidate DROP handling for some object types.
This gets rid of a significant amount of duplicative code.
KaiGai Kohei, reviewed in earlier versions by Dimitri Fontaine, with
further review and cleanup by me.
Diffstat (limited to 'src/backend/commands/Makefile')
-rw-r--r-- | src/backend/commands/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/Makefile b/src/backend/commands/Makefile index 81fd6581f32..4af7aad00b5 100644 --- a/src/backend/commands/Makefile +++ b/src/backend/commands/Makefile @@ -14,7 +14,7 @@ include $(top_builddir)/src/Makefile.global OBJS = aggregatecmds.o alter.o analyze.o async.o cluster.o comment.o \ collationcmds.o constraint.o conversioncmds.o copy.o \ - dbcommands.o define.o discard.o explain.o extension.o \ + dbcommands.o define.o discard.o dropcmds.o explain.o extension.o \ foreigncmds.o functioncmds.o \ indexcmds.o lockcmds.o operatorcmds.o opclasscmds.o \ portalcmds.o prepare.o proclang.o \ |