diff options
| author | Teodor Sigaev | 2018-04-12 10:02:45 +0000 |
|---|---|---|
| committer | Teodor Sigaev | 2018-04-12 10:02:45 +0000 |
| commit | c9c875a28fa6cbc38c227fb9e656dd7be948166f (patch) | |
| tree | 7ccb3927b72c55294e052999e11bced233b04499 /src/backend/utils/cache | |
| parent | 9e9befac4a2228ae8a5309900645ecd8ead69f53 (diff) | |
Rename IndexInfo.ii_KeyAttrNumbers array
Rename ii_KeyAttrNumbers to ii_IndexAttrNumbers to prevent confusion with
ii_NumIndexAttrs/ii_NumIndexKeyAttrs. ii_IndexAttrNumbers contains
all attributes including "including" columns, not only key attribute.
Discussion: https://www.postgresql.org/message-id/13123421-1d52-d0e4-c95c-6d69011e0595%40sigaev.ru
Diffstat (limited to 'src/backend/utils/cache')
| -rw-r--r-- | src/backend/utils/cache/relcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/cache/relcache.c b/src/backend/utils/cache/relcache.c index e81c4691ec2..fd2a3cc8c3d 100644 --- a/src/backend/utils/cache/relcache.c +++ b/src/backend/utils/cache/relcache.c @@ -5065,7 +5065,7 @@ restart: /* Collect simple attribute references */ for (i = 0; i < indexInfo->ii_NumIndexAttrs; i++) { - int attrnum = indexInfo->ii_KeyAttrNumbers[i]; + int attrnum = indexInfo->ii_IndexAttrNumbers[i]; /* * Since we have covering indexes with non-key columns, we must |
