1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-16 15:02:33 +03:00

Cleanup: move the 'Value' node into a separate file, rather than putting

it in the same file as the 'List' node.
This commit is contained in:
Neil Conway
2004-01-07 18:43:36 +00:00
parent 7f5e12a84c
commit afca5d50dc
7 changed files with 146 additions and 128 deletions

View File

@@ -10,7 +10,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/nodes/primnodes.h,v 1.93 2003/11/29 22:41:06 pgsql Exp $
* $PostgreSQL: pgsql/src/include/nodes/primnodes.h,v 1.94 2004/01/07 18:43:36 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,6 +19,7 @@
#include "access/attnum.h"
#include "nodes/pg_list.h"
#include "nodes/value.h"
/* ----------------------------------------------------------------