From 488f315913b77c54aa36c334ecba8e47c0140cb4 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 12 Jan 2000 05:04:42 +0000 Subject: [PATCH] Defend against > INDEX_MAX_KEYS keys in an index. --- src/backend/commands/indexcmds.c | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 7231cec6cc..de7030a74f 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * defind.c + * indexcmds.c * POSTGRES define, extend and remove index code. * * Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.18 2000/01/11 03:33:11 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.19 2000/01/12 05:04:42 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -87,6 +87,9 @@ DefineIndex(char *heapRelationName, numberOfAttributes = length(attributeList); if (numberOfAttributes <= 0) elog(ERROR, "DefineIndex: must specify at least one attribute"); + if (numberOfAttributes > INDEX_MAX_KEYS) + elog(ERROR, "Cannot use more than %d attributes in an index", + INDEX_MAX_KEYS); /* * compute heap relation id @@ -152,10 +155,8 @@ DefineIndex(char *heapRelationName, nargs = length(funcIndex->args); if (nargs > INDEX_MAX_KEYS) - { - elog(ERROR, - "Too many args to function, limit of %d", INDEX_MAX_KEYS); - } + elog(ERROR, "Index function can take at most %d arguments", + INDEX_MAX_KEYS); FIsetnArgs(&fInfo, nargs); @@ -258,10 +259,12 @@ ExtendIndex(char *indexRelationName, Expr *predicate, List *rangetable) relationId = index->indrelid; indproc = index->indproc; - for (i = INDEX_MAX_KEYS-1; i >= 0; i--) + for (i = 0; i < INDEX_MAX_KEYS; i++) + { if (index->indkey[i] == InvalidAttrNumber) break; - numberOfAttributes = i+1; + } + numberOfAttributes = i; if (VARSIZE(&index->indpred) != 0) { -- 2.40.0