mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
Implement CREATE/DROP OPERATOR CLASS. Work still remains: need more
documentation (xindex.sgml should be rewritten), need to teach pg_dump about it, need to update contrib modules that currently build pg_opclass entries by hand. Original patch by Bill Studenmund, grammar adjustments and general update for 7.3 by Tom Lane.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: nodes.h,v 1.113 2002/07/18 23:11:32 petere Exp $
|
||||
* $Id: nodes.h,v 1.114 2002/07/29 22:14:11 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -201,6 +201,8 @@ typedef enum NodeTag
|
||||
T_CreateConversionStmt,
|
||||
T_CreateCastStmt,
|
||||
T_DropCastStmt,
|
||||
T_CreateOpClassStmt,
|
||||
T_RemoveOpClassStmt,
|
||||
|
||||
T_A_Expr = 700,
|
||||
T_ColumnRef,
|
||||
@ -235,6 +237,7 @@ typedef enum NodeTag
|
||||
T_FuncWithArgs,
|
||||
T_PrivTarget,
|
||||
T_InsertDefault,
|
||||
T_CreateOpClassItem,
|
||||
|
||||
/*
|
||||
* TAGS FOR FUNCTION-CALL CONTEXT AND RESULTINFO NODES (see fmgr.h)
|
||||
|
Reference in New Issue
Block a user