diff options
Diffstat (limited to 'src/backend/catalog/index.c')
-rw-r--r-- | src/backend/catalog/index.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c index 9b339292e49..33a18030b79 100644 --- a/src/backend/catalog/index.c +++ b/src/backend/catalog/index.c @@ -1028,15 +1028,8 @@ index_create(Relation heapRelation, } /* Post creation hook for new index */ - if (object_access_hook) - { - ObjectAccessPostCreate post_create_args; - - memset(&post_create_args, 0, sizeof(ObjectAccessPostCreate)); - post_create_args.is_internal = is_internal; - (*object_access_hook)(OAT_POST_CREATE, RelationRelationId, - indexRelationId, 0, &post_create_args); - } + InvokeObjectPostCreateHookArg(RelationRelationId, + indexRelationId, 0, is_internal); /* * Advance the command counter so that we can see the newly-entered |