1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Use "alternative" instead of "alternate" where it is clearer.

This commit is contained in:
Peter Eisentraut
2007-11-07 12:24:24 +00:00
parent e9d7bd2650
commit 5f9869d0ee
20 changed files with 37 additions and 37 deletions

View File

@ -57,7 +57,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/common/heaptuple.c,v 1.117 2007/04/06 04:21:41 tgl Exp $
* $PostgreSQL: pgsql/src/backend/access/common/heaptuple.c,v 1.118 2007/11/07 12:24:23 petere Exp $
*
*-------------------------------------------------------------------------
*/
@ -489,7 +489,7 @@ heap_attisnull(HeapTuple tup, int attnum)
*
* This caches attribute offsets in the attribute descriptor.
*
* An alternate way to speed things up would be to cache offsets
* An alternative way to speed things up would be to cache offsets
* with the tuple, but that seems more difficult unless you take
* the storage hit of actually putting those offsets into the
* tuple you send to disk. Yuck.