aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tcop/postgres.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-07-30 16:55:45 +0000
committerBruce Momjian <bruce@momjian.us>2002-07-30 16:55:45 +0000
commit6e9893047e4021b9ad1f3d553a02d75b8b4321d7 (patch)
tree45824ee64a292a942a39f010317338ad3f8cbd97 /src/backend/tcop/postgres.c
parent874148fe34d404d8dc77d8ed7482f16f5aaad5ba (diff)
downloadpostgresql-6e9893047e4021b9ad1f3d553a02d75b8b4321d7.tar.gz
postgresql-6e9893047e4021b9ad1f3d553a02d75b8b4321d7.zip
The attached patch removes the last remnants of support for
'tioga recipes', whatever those are -- Peter E. killed most of it a couple days ago, but this patch removes the rest. Most of it was #ifdef'ed out anyway. Neil Conway
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r--src/backend/tcop/postgres.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index 5854f1261c2..8aae5f5406d 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.275 2002/07/30 05:35:53 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.276 2002/07/30 16:55:45 momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@@ -1693,7 +1693,7 @@ PostgresMain(int argc, char *argv[], const char *username)
if (!IsUnderPostmaster)
{
puts("\nPOSTGRES backend interactive interface ");
- puts("$Revision: 1.275 $ $Date: 2002/07/30 05:35:53 $\n");
+ puts("$Revision: 1.276 $ $Date: 2002/07/30 16:55:45 $\n");
}
/*
@@ -2352,12 +2352,6 @@ CreateCommandTag(Node *parsetree)
tag = "EXPLAIN";
break;
-#ifdef NOT_USED
- case T_RecipeStmt:
- tag = "EXECUTE RECIPE";
- break;
-#endif
-
case T_VariableSetStmt:
tag = "SET";
break;