Fix problem with selectivity error in added columns with ALTER TABLE.

Move files to deadcode.
This commit is contained in:
Bruce Momjian 1999-02-24 17:29:06 +00:00
parent f3f7c2acde
commit 6df955fd3b
7 changed files with 11 additions and 10 deletions

View File

@ -4,7 +4,7 @@
# Makefile for commands # Makefile for commands
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.16 1998/10/08 18:37:14 momjian Exp $ # $Header: /cvsroot/pgsql/src/backend/commands/Makefile,v 1.17 1999/02/24 17:28:57 momjian Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
@ -17,7 +17,7 @@ ifdef MULTIBYTE
CFLAGS+= $(MBFLAGS) CFLAGS+= $(MBFLAGS)
endif endif
OBJS = async.o creatinh.o command.o copy.o defind.o define.o \ OBJS = async.o creatinh.o command.o copy.o indexcmds.o define.o \
remove.o rename.o vacuum.o view.o cluster.o \ remove.o rename.o vacuum.o view.o cluster.o \
recipe.o explain.o sequence.o trigger.o user.o proclang.o \ recipe.o explain.o sequence.o trigger.o user.o proclang.o \
dbcommands.o variable.o dbcommands.o variable.o

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/recipe.c,v 1.28 1999/02/13 23:15:07 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/_deadcode/Attic/recipe.c,v 1.1 1999/02/24 17:29:00 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */

View File

@ -5,7 +5,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: recipe.h,v 1.7 1999/02/13 23:21:19 momjian Exp $ * $Id: recipe.h,v 1.1 1999/02/24 17:29:00 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.38 1999/02/13 23:15:03 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.39 1999/02/24 17:28:57 momjian Exp $
* *
* NOTES * NOTES
* The PortalExecutorHeapMemory crap needs to be eliminated * The PortalExecutorHeapMemory crap needs to be eliminated
@ -476,7 +476,7 @@ PerformAddAttribute(char *relationName,
namestrcpy(&(attribute->attname), colDef->colname); namestrcpy(&(attribute->attname), colDef->colname);
attribute->atttypid = typeTuple->t_data->t_oid; attribute->atttypid = typeTuple->t_data->t_oid;
attribute->attlen = form->typlen; attribute->attlen = form->typlen;
attributeD.attdisbursion = 0; attribute->attdisbursion = 0;
attribute->attcacheoff = -1; attribute->attcacheoff = -1;
attribute->atttypmod = colDef->typename->typmod; attribute->atttypmod = colDef->typename->typmod;
attribute->attnum = i; attribute->attnum = i;

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.34 1999/02/13 23:15:05 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.1 1999/02/24 17:28:58 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */

View File

@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.55 1999/02/13 23:18:48 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.56 1999/02/24 17:29:01 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -663,6 +663,7 @@ ProcessUtility(Node *parsetree,
} }
break; break;
#ifdef NOT_USED
/* /*
* ******************************** Tioga-related statements ******************************* * ******************************** Tioga-related statements *******************************
*/ */
@ -675,6 +676,7 @@ ProcessUtility(Node *parsetree,
beginRecipe(stmt); beginRecipe(stmt);
} }
break; break;
#endif
/* /*
* ******************************** set variable statements ******************************* * ******************************** set variable statements *******************************

View File

@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: nodes.h,v 1.44 1999/02/23 07:55:24 thomas Exp $ * $Id: nodes.h,v 1.45 1999/02/24 17:29:06 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -163,7 +163,6 @@ typedef enum NodeTag
T_FetchStmt, T_FetchStmt,
T_IndexStmt, T_IndexStmt,
T_ProcedureStmt, T_ProcedureStmt,
T_RecipeStmt,
T_RemoveAggrStmt, T_RemoveAggrStmt,
T_RemoveFuncStmt, T_RemoveFuncStmt,
T_RemoveOperStmt, T_RemoveOperStmt,