diff options
Diffstat (limited to 'src/backend/tcop/utility.c')
-rw-r--r-- | src/backend/tcop/utility.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/backend/tcop/utility.c b/src/backend/tcop/utility.c index 9ffcf151d52..ffb17b39b15 100644 --- a/src/backend/tcop/utility.c +++ b/src/backend/tcop/utility.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.28 1997/11/07 06:38:51 thomas Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.29 1997/11/21 18:11:16 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -27,7 +27,6 @@ #include "commands/creatinh.h" #include "commands/sequence.h" #include "commands/defrem.h" -#include "commands/purge.h" #include "commands/rename.h" #include "commands/view.h" #include "commands/version.h" @@ -210,19 +209,6 @@ ProcessUtility(Node * parsetree, } break; - case T_PurgeStmt: - { - PurgeStmt *stmt = (PurgeStmt *) parsetree; - - commandTag = "PURGE"; - CHECK_IF_ABORTED(); - - RelationPurge(stmt->relname, - stmt->beforeDate, /* absolute time string */ - stmt->afterDate); /* relative time string */ - } - break; - case T_CopyStmt: { CopyStmt *stmt = (CopyStmt *) parsetree; |