summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian2001-05-16 22:36:03 +0000
committerBruce Momjian2001-05-16 22:36:03 +0000
commit8128ae686fc935dddc729a426ca451ce750e8b14 (patch)
treeffad799870fda5ae47d791f70245afc6aabf775a /src
parent27336e4f7a2dddfcd31fbf68e98ca9bb0abd0165 (diff)
Add missing paren.
Diffstat (limited to 'src')
-rw-r--r--src/backend/catalog/index.c4
-rw-r--r--src/interfaces/odbc/info.c2
2 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c
index 282df627b72..d0171a93a8c 100644
--- a/src/backend/catalog/index.c
+++ b/src/backend/catalog/index.c
@@ -8,7 +8,7 @@
*
*
* 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
@@ -228,7 +228,6 @@ ConstructTupleDescriptor(Relation heapRelation,
if (!AttrNumberIsForUserDefinedAttr(atnum))
{
-
/*
* here we are indexing on a system attribute (-1...-n)
*/
@@ -236,7 +235,6 @@ ConstructTupleDescriptor(Relation heapRelation,
}
else
{
-
/*
* here we are indexing on a normal attribute (1...n)
*/
diff --git a/src/interfaces/odbc/info.c b/src/interfaces/odbc/info.c
index be4b4e54815..e393c5b069c 100644
--- a/src/interfaces/odbc/info.c
+++ b/src/interfaces/odbc/info.c
@@ -2336,7 +2336,7 @@ SQLStatistics(
*/
set_tuplefield_int2(&row->tuple[6], (Int2)
(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));
if (fields_vector[i] == OID_ATTNUM)