1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

More EXTEND INDEX removal.

Martijn van Oosterhout
This commit is contained in:
Bruce Momjian
2001-07-16 19:07:40 +00:00
parent 40db52af34
commit 784def9e8e
5 changed files with 5 additions and 51 deletions

View File

@ -15,7 +15,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.147 2001/07/12 18:02:59 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.148 2001/07/16 19:07:37 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -2037,18 +2037,6 @@ _copyCommentStmt(CommentStmt *from)
return newnode;
}
static ExtendStmt *
_copyExtendStmt(ExtendStmt *from)
{
ExtendStmt *newnode = makeNode(ExtendStmt);
newnode->idxname = pstrdup(from->idxname);
Node_Copy(from, newnode, whereClause);
Node_Copy(from, newnode, rangetable);
return newnode;
}
static FetchStmt *
_copyFetchStmt(FetchStmt *from)
{
@ -2796,9 +2784,6 @@ copyObject(void *from)
case T_CommentStmt:
retval = _copyCommentStmt(from);
break;
case T_ExtendStmt:
retval = _copyExtendStmt(from);
break;
case T_FetchStmt:
retval = _copyFetchStmt(from);
break;