]> granicus.if.org Git - postgresql/commitdiff
More cleanups. Still doesn't work.
authorBruce Momjian <bruce@momjian.us>
Tue, 11 Jan 2000 03:33:14 +0000 (03:33 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 11 Jan 2000 03:33:14 +0000 (03:33 +0000)
src/backend/access/common/indextuple.c
src/backend/commands/indexcmds.c
src/backend/libpq/be-pqexec.c
src/backend/optimizer/util/plancat.c
src/backend/tcop/fastpath.c

index 77d878591d208dbac18ef63eb1ba14560246576f..9a096e8930b4c41ca81ed9aaab291a960e869215 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.39 1999/10/23 03:13:20 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.40 2000/01/11 03:33:11 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -44,9 +44,8 @@ index_formtuple(TupleDesc tupleDescriptor,
        uint16          tupmask = 0;
        int                     numberOfAttributes = tupleDescriptor->natts;
 
-       /* XXX shouldn't this test be '>' ? */
-       if (numberOfAttributes >= INDEX_MAX_KEYS)
-               elog(ERROR, "index_formtuple: numberOfAttributes %d >= %d",
+       if (numberOfAttributes > INDEX_MAX_KEYS)
+               elog(ERROR, "index_formtuple: numberOfAttributes %d > %d",
                         numberOfAttributes, INDEX_MAX_KEYS);
 
        for (i = 0; i < numberOfAttributes && !hasnull; i++)
index 0682cefecb9e8c98dd76ffb208e835481fe0d983..7231cec6cc1cbe62a8c859f35fd0f48810fc9a40 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.17 2000/01/10 17:14:32 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.18 2000/01/11 03:33:11 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -258,10 +258,10 @@ ExtendIndex(char *indexRelationName, Expr *predicate, List *rangetable)
        relationId = index->indrelid;
        indproc = index->indproc;
 
-       for (i = 0; i < INDEX_MAX_KEYS; i++)
+       for (i = INDEX_MAX_KEYS-1; i >= 0; i--)
                if (index->indkey[i] == InvalidAttrNumber)
                        break;
-       numberOfAttributes = i;
+       numberOfAttributes = i+1;
 
        if (VARSIZE(&index->indpred) != 0)
        {
index 8b6a880e2e1038e2beda374822a644dfbacd20a5..2f32a519eaef74331deb9ca837d8b07167f2237f 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/libpq/Attic/be-pqexec.c,v 1.27 2000/01/11 02:30:06 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/libpq/Attic/be-pqexec.c,v 1.28 2000/01/11 03:33:12 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -80,8 +80,8 @@ PQfn(int fnid,
         */
        retval = (char *)
                fmgr(fnid, arg[0], arg[1], arg[2], arg[3],
-                        arg[4], arg[5], arg[6], arg[7]);
-                        arg[8], arg[9], arg[10], arg[11]);
+                        arg[4], arg[5], arg[6], arg[7],
+                        arg[8], arg[9], arg[10], arg[11],
                         arg[12], arg[13], arg[14], arg[15]);
 
        /* ----------------
index ef0dbfbda99671f733550d434969ef0ba207ecf3..6398be2fd5f3c09f9175a190e6a9b62ef14d2251 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.41 2000/01/09 00:26:40 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/optimizer/util/plancat.c,v 1.42 2000/01/11 03:33:13 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -120,10 +120,8 @@ find_secondary_indexes(Query *root, Index relid)
 
                for (i = 0; i < INDEX_MAX_KEYS; i++)
                        info->indexkeys[i] = index->indkey[i];
-               info->indexkeys[INDEX_MAX_KEYS] = 0;
                for (i = 0; i < INDEX_MAX_KEYS; i++)
                        info->classlist[i] = index->indclass[i];
-               info->classlist[INDEX_MAX_KEYS] = (Oid) 0;
 
                /* Extract info from the relation descriptor for the index */
                indexRelation = index_open(index->indexrelid);
index 9d3ce37f72b6ea5536c12c067bb9e680927384b6..230babf16483095f1e120c9214ea79a330eaa8a8 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.34 2000/01/11 02:46:48 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.35 2000/01/11 03:33:14 momjian Exp $
  *
  * NOTES
  *       This cruft is the server side of PQfn.
@@ -363,8 +363,8 @@ HandleFunctionRequest()
 #ifndef NO_FASTPATH
        retval = fmgr(fid,
                                  arg[0], arg[1], arg[2], arg[3],
-                                 arg[4], arg[5], arg[6], arg[7]);
-                                 arg[8], arg[9], arg[10], arg[11]);
+                                 arg[4], arg[5], arg[6], arg[7],
+                                 arg[8], arg[9], arg[10], arg[11],
                                  arg[12], arg[13], arg[14], arg[15]);
 
 #else