mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
Fix call to index_create in DefineIndex.
This commit is contained in:
parent
d656e023a1
commit
aa1a887185
@ -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,
|
|||||||
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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user