mirror of
https://github.com/postgres/postgres.git
synced 2025-08-30 06:01:21 +03:00
Alignment cleanup so no more massive switch statements for alignment,
just two macros.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.26 1998/09/02 23:05:21 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.27 1998/09/07 05:35:30 momjian Exp $
|
||||
*
|
||||
* INTERFACE ROUTINES
|
||||
* index_open - open an index relation by relationId
|
||||
@@ -384,9 +384,7 @@ GetIndexValue(HeapTuple tuple,
|
||||
*attNull = FALSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
returnVal = heap_getattr(tuple, attrNums[attOff],
|
||||
hTupDesc, attNull);
|
||||
}
|
||||
returnVal = heap_getattr(tuple, attrNums[attOff], hTupDesc, attNull);
|
||||
|
||||
return returnVal;
|
||||
}
|
||||
|
Reference in New Issue
Block a user