mirror of
https://github.com/postgres/postgres.git
synced 2025-05-08 07:21:33 +03:00
The outer #define was forgotten. Attached patch adds it; please apply.
Alvaro
This commit is contained in:
parent
098d0304d7
commit
eba9be883c
@ -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);
|
|||||||
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 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user