diff options
Diffstat (limited to 'src/include/commands/defrem.h')
-rw-r--r-- | src/include/commands/defrem.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h index c8701402ca5..7fba58bef88 100644 --- a/src/include/commands/defrem.h +++ b/src/include/commands/defrem.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/defrem.h,v 1.92 2009/01/01 17:23:58 momjian Exp $ + * $PostgreSQL: pgsql/src/include/commands/defrem.h,v 1.93 2009/02/02 19:31:40 alvherre Exp $ * *------------------------------------------------------------------------- */ @@ -145,6 +145,8 @@ extern int64 defGetInt64(DefElem *def); extern List *defGetQualifiedName(DefElem *def); extern TypeName *defGetTypeName(DefElem *def); extern int defGetTypeLength(DefElem *def); -extern DefElem *defWithOids(bool value); +extern char *reloptGetString(ReloptElem *relopt); +extern bool reloptGetBoolean(ReloptElem *relopt); +extern ReloptElem *reloptWithOids(bool value); #endif /* DEFREM_H */ |