diff options
| author | Heikki Linnakangas | 2008-10-31 08:39:22 +0000 |
|---|---|---|
| committer | Heikki Linnakangas | 2008-10-31 08:39:22 +0000 |
| commit | 092bc4965378840479e0250ae679e1d8e86577ee (patch) | |
| tree | 12c24eea593d31739af864d8665553be6d33426c /src/include/nodes | |
| parent | 34e37d58ed138bca3f7f0c799fdc1bb7bbc3d402 (diff) | |
Add support for user-defined I/O conversion casts.
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 2660d7adb80..5e112d178ba 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -13,7 +13,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.376 2008/10/04 21:56:55 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.377 2008/10/31 08:39:22 heikki Exp $ * *------------------------------------------------------------------------- */ @@ -2062,6 +2062,7 @@ typedef struct CreateCastStmt TypeName *targettype; FuncWithArgs *func; CoercionContext context; + bool inout; } CreateCastStmt; /* ---------------------- |
