mirror of
https://github.com/postgres/postgres.git
synced 2025-11-07 19:06:32 +03:00
Fixes:
Here's a couple more small fixes that I've made to make my runtime checker happy with the code. More along the lines of those that I sent in the past, ie, a pointer to an array != the name of an array. The last patch is that I mailed about yesterday -- I got two replies of "do it", so it's done. As far as I can tell, however, the function in question is never called by pg95, so either way it can't hurt... From: "Kurt J. Lidl" <lidl@va.pubnix.com>
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.1.1.1 1996/07/09 06:21:15 scrappy Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.2 1996/08/19 13:32:07 scrappy Exp $
|
||||
*
|
||||
*
|
||||
* INTERFACE ROUTINES
|
||||
@@ -992,7 +992,7 @@ index_create(char *heapRelationName,
|
||||
AttrNumber attNums[],
|
||||
Oid classObjectId[],
|
||||
uint16 parameterCount,
|
||||
Datum parameter[],
|
||||
Datum *parameter,
|
||||
Node *predicate)
|
||||
{
|
||||
Relation heapRelation;
|
||||
@@ -1610,7 +1610,7 @@ index_build(Relation heapRelation,
|
||||
int numberOfAttributes,
|
||||
AttrNumber attributeNumber[],
|
||||
uint16 parameterCount,
|
||||
Datum parameter[],
|
||||
Datum *parameter,
|
||||
FuncIndexInfo *funcInfo,
|
||||
PredInfo *predInfo)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user