From 8157c833aad8cb9be658dac411c22a1f6cc9db7a Mon Sep 17 00:00:00 2001 From: "Vadim B. Mikheev" Date: Wed, 19 Mar 1997 07:36:35 +0000 Subject: [PATCH] Fix index_create for multi-column indices --- src/include/catalog/index.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/catalog/index.h b/src/include/catalog/index.h index d5d5f8e55e..70f37d32f3 100644 --- a/src/include/catalog/index.h +++ b/src/include/catalog/index.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: index.h,v 1.4 1996/11/13 20:50:49 scrappy Exp $ + * $Id: index.h,v 1.5 1997/03/19 07:36:35 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -31,7 +31,7 @@ extern void InitIndexStrategy(int numatts, extern void index_create(char *heapRelationName, char* indexRelationName, FuncIndexInfo *funcInfo, - TypeName *IndexKeyType, + List *attributeList, Oid accessMethodObjectId, int numatts, AttrNumber attNums[], -- 2.40.0