diff options
Diffstat (limited to 'src/backend/commands/tablespace.c')
-rw-r--r-- | src/backend/commands/tablespace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablespace.c b/src/backend/commands/tablespace.c index 6e652aa66bd..80515bae19c 100644 --- a/src/backend/commands/tablespace.c +++ b/src/backend/commands/tablespace.c @@ -460,7 +460,7 @@ DropTableSpace(DropTableSpaceStmt *stmt) /* * Remove the pg_tablespace tuple (this will roll back if we fail below) */ - simple_heap_delete(rel, &tuple->t_self); + CatalogTupleDelete(rel, &tuple->t_self); heap_endscan(scandesc); |