From: Bruce Momjian Date: Mon, 17 May 1999 00:19:12 +0000 (+0000) Subject: Change md* call to smgr*. X-Git-Tag: REL6_5~242 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=054cae817316ecb7a58165d8764e7077d5dfd3ca;p=postgresql Change md* call to smgr*. --- diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c index 0754455103..6cbb61a4d8 100644 --- a/src/backend/catalog/index.c +++ b/src/backend/catalog/index.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.72 1999/05/15 22:31:07 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.73 1999/05/17 00:19:12 momjian Exp $ * * * INTERFACE ROUTINES @@ -1187,7 +1187,7 @@ index_destroy(Oid indexId) */ ReleaseRelationBuffers(userindexRelation); - if (mdunlink(userindexRelation) != SM_SUCCESS) + if (smgrunlink(userindexRelation) != SM_SUCCESS) elog(ERROR, "amdestroyr: unlink: %m"); index_close(userindexRelation);