Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit bb9f663

Browse files
committed
Correct error introduced in recent hasoids changes --- it's not a bool
field anymore.
1 parent 672a807 commit bb9f663

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/nodes/outfuncs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/nodes/outfuncs.c,v 1.230 2004/01/14 23:01:55 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/nodes/outfuncs.c,v 1.231 2004/01/22 00:34:31 tgl Exp $
1212
*
1313
* NOTES
1414
* Every node type that can appear in stored rules' parsetrees *must*
@@ -1133,7 +1133,7 @@ _outCreateStmt(StringInfo str, CreateStmt *node)
11331133
WRITE_NODE_FIELD(tableElts);
11341134
WRITE_NODE_FIELD(inhRelations);
11351135
WRITE_NODE_FIELD(constraints);
1136-
WRITE_BOOL_FIELD(hasoids);
1136+
WRITE_ENUM_FIELD(hasoids, ContainsOids);
11371137
WRITE_ENUM_FIELD(oncommit, OnCommitAction);
11381138
}
11391139

0 commit comments

Comments
 (0)