Commit eba9be88 authored by Bruce Momjian's avatar Bruce Momjian

The outer #define was forgotten. Attached patch adds it; please apply.

Alvaro
parent 098d0304
...@@ -6,11 +6,14 @@ ...@@ -6,11 +6,14 @@
* *
* Copyright (c) 2003, PostgreSQL Global Development Group * Copyright (c) 2003, PostgreSQL Global Development Group
* *
* $PostgreSQL: pgsql/src/include/nodes/value.h,v 1.1 2004/01/07 18:43:36 neilc Exp $ * $PostgreSQL: pgsql/src/include/nodes/value.h,v 1.2 2004/07/12 01:00:45 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#ifndef VALUE_H
#define VALUE_H
#include "nodes/nodes.h" #include "nodes/nodes.h"
/*---------------------- /*----------------------
...@@ -54,3 +57,5 @@ extern Value *makeInteger(long i); ...@@ -54,3 +57,5 @@ extern Value *makeInteger(long i);
extern Value *makeFloat(char *numericStr); extern Value *makeFloat(char *numericStr);
extern Value *makeString(char *str); extern Value *makeString(char *str);
extern Value *makeBitString(char *str); extern Value *makeBitString(char *str);
#endif /* VALUE_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment