Commit 8128ae68 authored by Bruce Momjian's avatar Bruce Momjian

Add missing paren.

parent 27336e4f
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.149 2001/05/15 03:49:34 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.150 2001/05/16 22:36:03 momjian Exp $
* *
* *
* INTERFACE ROUTINES * INTERFACE ROUTINES
...@@ -228,7 +228,6 @@ ConstructTupleDescriptor(Relation heapRelation, ...@@ -228,7 +228,6 @@ ConstructTupleDescriptor(Relation heapRelation,
if (!AttrNumberIsForUserDefinedAttr(atnum)) if (!AttrNumberIsForUserDefinedAttr(atnum))
{ {
/* /*
* here we are indexing on a system attribute (-1...-n) * here we are indexing on a system attribute (-1...-n)
*/ */
...@@ -236,7 +235,6 @@ ConstructTupleDescriptor(Relation heapRelation, ...@@ -236,7 +235,6 @@ ConstructTupleDescriptor(Relation heapRelation,
} }
else else
{ {
/* /*
* here we are indexing on a normal attribute (1...n) * here we are indexing on a normal attribute (1...n)
*/ */
......
...@@ -2336,7 +2336,7 @@ SQLStatistics( ...@@ -2336,7 +2336,7 @@ SQLStatistics(
*/ */
set_tuplefield_int2(&row->tuple[6], (Int2) set_tuplefield_int2(&row->tuple[6], (Int2)
(atoi(isclustered) ? SQL_INDEX_CLUSTERED : (atoi(isclustered) ? SQL_INDEX_CLUSTERED :
(!strncmp(ishash, "hash", 4)) ? SQL_INDEX_HASHED : SQL_INDEX_OTHER); (!strncmp(ishash, "hash", 4)) ? SQL_INDEX_HASHED : SQL_INDEX_OTHER));
set_tuplefield_int2(&row->tuple[7], (Int2) (i + 1)); set_tuplefield_int2(&row->tuple[7], (Int2) (i + 1));
if (fields_vector[i] == OID_ATTNUM) if (fields_vector[i] == OID_ATTNUM)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment