mirror of
https://github.com/postgres/postgres.git
synced 2025-11-07 19:06:32 +03:00
Add INSERT(..., DEFAULT, ).
Rod Taylor
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: parsenodes.h,v 1.167 2002/04/01 04:35:40 tgl Exp $
|
||||
* $Id: parsenodes.h,v 1.168 2002/04/05 11:56:54 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -359,6 +359,14 @@ typedef struct ResTarget
|
||||
* assign */
|
||||
} ResTarget;
|
||||
|
||||
/*
|
||||
* Empty node used as a marker for Default Columns
|
||||
*/
|
||||
typedef struct InsertDefault
|
||||
{
|
||||
NodeTag type;
|
||||
} InsertDefault;
|
||||
|
||||
/*
|
||||
* SortGroupBy - for ORDER BY clause
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user