File tree Expand file tree Collapse file tree 7 files changed +11
-10
lines changed Expand file tree Collapse file tree 7 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 4
4
# Makefile for commands
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.16 1998/10/08 18:37:14 momjian Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.17 1999/02/24 17:28:57 momjian Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
@@ -17,7 +17,7 @@ ifdef MULTIBYTE
17
17
CFLAGS+ = $(MBFLAGS )
18
18
endif
19
19
20
- OBJS = async.o creatinh.o command.o copy.o defind .o define.o \
20
+ OBJS = async.o creatinh.o command.o copy.o indexcmds .o define.o \
21
21
remove.o rename.o vacuum.o view.o cluster.o \
22
22
recipe.o explain.o sequence.o trigger.o user.o proclang.o \
23
23
dbcommands.o variable.o
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/recipe.c,v 1.28 1999/02/13 23:15:07 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/commands/_deadcode/ Attic/recipe.c,v 1.1 1999/02/24 17:29:00 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
Original file line number Diff line number Diff line change 5
5
*
6
6
* Copyright (c) 1994, Regents of the University of California
7
7
*
8
- * $Id: recipe.h,v 1.7 1999/02/13 23:21:19 momjian Exp $
8
+ * $Id: recipe.h,v 1.1 1999/02/24 17:29:00 momjian Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.38 1999/02/13 23:15:03 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.39 1999/02/24 17:28:57 momjian Exp $
11
11
*
12
12
* NOTES
13
13
* The PortalExecutorHeapMemory crap needs to be eliminated
@@ -476,7 +476,7 @@ PerformAddAttribute(char *relationName,
476
476
namestrcpy (& (attribute -> attname ), colDef -> colname );
477
477
attribute -> atttypid = typeTuple -> t_data -> t_oid ;
478
478
attribute -> attlen = form -> typlen ;
479
- attributeD . attdisbursion = 0 ;
479
+ attribute -> attdisbursion = 0 ;
480
480
attribute -> attcacheoff = -1 ;
481
481
attribute -> atttypmod = colDef -> typename -> typmod ;
482
482
attribute -> attnum = i ;
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind .c,v 1.34 1999/02/13 23:15:05 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds .c,v 1.1 1999/02/24 17:28:58 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.55 1999/02/13 23:18:48 momjian Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.56 1999/02/24 17:29:01 momjian Exp $
13
13
*
14
14
*-------------------------------------------------------------------------
15
15
*/
@@ -663,6 +663,7 @@ ProcessUtility(Node *parsetree,
663
663
}
664
664
break ;
665
665
666
+ #ifdef NOT_USED
666
667
/*
667
668
* ******************************** Tioga-related statements *******************************
668
669
*/
@@ -675,6 +676,7 @@ ProcessUtility(Node *parsetree,
675
676
beginRecipe (stmt );
676
677
}
677
678
break ;
679
+ #endif
678
680
679
681
/*
680
682
* ******************************** set variable statements *******************************
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: nodes.h,v 1.44 1999/02/23 07:55:24 thomas Exp $
9
+ * $Id: nodes.h,v 1.45 1999/02/24 17:29:06 momjian Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -163,7 +163,6 @@ typedef enum NodeTag
163
163
T_FetchStmt ,
164
164
T_IndexStmt ,
165
165
T_ProcedureStmt ,
166
- T_RecipeStmt ,
167
166
T_RemoveAggrStmt ,
168
167
T_RemoveFuncStmt ,
169
168
T_RemoveOperStmt ,
You can’t perform that action at this time.
0 commit comments