File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.26 1998/01/20 22:11:12 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.27 1998/01/25 04:07:52 scrappy Exp $
11
11
*
12
12
* NOTES
13
13
* Every (plan) node in POSTGRES has an associated "out" routine which
@@ -102,7 +102,7 @@ _outIndexStmt(StringInfo str, IndexStmt *node)
102
102
appendStringInfo (str , " :rangetable " );
103
103
_outNode (str , node -> rangetable );
104
104
appendStringInfo (str , " :lossy " );
105
- appendStringInfo (str , (* node -> lossy ? "true" : "false" ));
105
+ appendStringInfo (str , (node -> lossy ? "true" : "false" ));
106
106
appendStringInfo (str , " :unique " );
107
107
appendStringInfo (str , (node -> unique ? "true" : "false" ));
108
108
}
You can’t perform that action at this time.
0 commit comments