summaryrefslogtreecommitdiff
path: root/src/include/catalog
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2023-08-23 06:14:11 +0200
committerPeter Eisentraut <peter@eisentraut.org>2023-08-23 06:39:39 +0200
commit23382b0f8b21e3f5330d765d1abfcef58d086111 (patch)
tree85b79dc10a91113ef727c29f28fb183137cfcb60 /src/include/catalog
parent11af63fb48d278b86aa948a5b57f136ef03c2bb7 (diff)
Rename some function arguments for better clarity
Especially make sure that array arguments have plural names. Discussion: https://www.postgresql.org/message-id/flat/5ed89c69-f4e6-5dab-4003-63bde7460e5e%40eisentraut.org
Diffstat (limited to 'src/include/catalog')
-rw-r--r--src/include/catalog/index.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/catalog/index.h b/src/include/catalog/index.h
index 72ac2dc1b10..4d8ba81f907 100644
--- a/src/include/catalog/index.h
+++ b/src/include/catalog/index.h
@@ -74,10 +74,10 @@ extern Oid index_create(Relation heapRelation,
RelFileNumber relFileNumber,
IndexInfo *indexInfo,
const List *indexColNames,
- Oid accessMethodObjectId,
+ Oid accessMethodId,
Oid tableSpaceId,
- const Oid *collationObjectId,
- const Oid *classObjectId,
+ const Oid *collationIds,
+ const Oid *opclassIds,
const int16 *coloptions,
Datum reloptions,
bits16 flags,