summaryrefslogtreecommitdiff
path: root/src/include/catalog/heap.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-03-07 16:35:41 +0000
committerBruce Momjian <bruce@momjian.us>2002-03-07 16:35:41 +0000
commitb976b8af803fb1b3d9ab6a5ae5e13f3a9a90da32 (patch)
treebe92fa181752e2769ea63315b21a6db472a2c3c9 /src/include/catalog/heap.h
parent609f71b760d64f8ff512a5caa23d4803f664bd84 (diff)
downloadpostgresql-b976b8af803fb1b3d9ab6a5ae5e13f3a9a90da32.tar.gz
Back out domain patch until it works properly.
Diffstat (limited to 'src/include/catalog/heap.h')
-rw-r--r--src/include/catalog/heap.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/include/catalog/heap.h b/src/include/catalog/heap.h
index 79c9e0b23a..68c4c701ae 100644
--- a/src/include/catalog/heap.h
+++ b/src/include/catalog/heap.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: heap.h,v 1.42 2002/03/06 20:34:55 momjian Exp $
+ * $Id: heap.h,v 1.43 2002/03/07 16:35:38 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -15,8 +15,6 @@
#define HEAP_H
#include "catalog/pg_attribute.h"
-#include "nodes/parsenodes.h"
-#include "parser/parse_node.h"
#include "utils/rel.h"
typedef struct RawColumnDefault
@@ -47,12 +45,6 @@ extern void AddRelationRawConstraints(Relation rel,
List *rawColDefaults,
List *rawConstraints);
-extern Node *cookDefault(ParseState *pstate
- , Node *raw_default
- , Oid atttypid
- , int32 atttypmod
- , char *attname);
-
extern int RemoveCheckConstraint(Relation rel, const char *constrName, bool inh);
extern Form_pg_attribute SystemAttributeDefinition(AttrNumber attno,