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

Completed FOREIGN KEY syntax.

Added functionality for automatic trigger creation during CREATE TABLE.

Added ON DELETE RESTRICT and some others.

Jan
This commit is contained in:
Jan Wieck
1999-12-06 18:02:47 +00:00
parent 1d8ce77233
commit b8ef7e7f82
6 changed files with 1178 additions and 114 deletions

View File

@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: nodes.h,v 1.56 1999/11/23 20:07:02 momjian Exp $
* $Id: nodes.h,v 1.57 1999/12/06 18:02:46 wieck Exp $
*
*-------------------------------------------------------------------------
*/
@ -215,7 +215,8 @@ typedef enum NodeTag
T_JoinExpr,
T_CaseExpr,
T_CaseWhen,
T_RowMark
T_RowMark,
T_FkConstraint
} NodeTag;
/*