1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Add missing piece of BitString support to node output functions. Expand

and remove IsA_Value macro.
This commit is contained in:
Peter Eisentraut
2001-01-20 00:15:59 +00:00
parent d128852358
commit 19cba0cc1b
2 changed files with 3 additions and 6 deletions

View File

@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: nodes.h,v 1.84 2000/11/24 20:16:40 petere Exp $
* $Id: nodes.h,v 1.85 2001/01/20 00:15:59 petere Exp $
*
*-------------------------------------------------------------------------
*/
@ -270,9 +270,6 @@ typedef struct Node
(IsA(jp, Join) || IsA(jp, NestLoop) || \
IsA(jp, MergeJoin) || IsA(jp, HashJoin))
#define IsA_Value(t) \
(IsA(t, Integer) || IsA(t, Float) || IsA(t, String))
/* ----------------------------------------------------------------
* extern declarations follow
* ----------------------------------------------------------------