Commit aa1a8871 authored by Vadim B. Mikheev's avatar Vadim B. Mikheev

Fix call to index_create in DefineIndex.

parent d656e023
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.10 1997/01/18 05:48:07 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.11 1997/03/19 07:52:03 vadim Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -193,7 +193,7 @@ DefineIndex(char *heapRelationName, ...@@ -193,7 +193,7 @@ DefineIndex(char *heapRelationName,
classObjectId, relationId); classObjectId, relationId);
index_create(heapRelationName, indexRelationName, NULL, index_create(heapRelationName, indexRelationName, NULL,
((IndexElem*)lfirst(attributeList))->tname, attributeList,
accessMethodId, numberOfAttributes, attributeNumberA, accessMethodId, numberOfAttributes, attributeNumberA,
classObjectId, parameterCount, parameterA, (Node*)cnfPred, classObjectId, parameterCount, parameterA, (Node*)cnfPred,
lossy, unique); lossy, unique);
......
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