From d9b2bc45cf75f913490f1b3ce9b9263509b26704 Mon Sep 17 00:00:00 2001 From: Stephen Frost Date: Thu, 21 Aug 2014 19:06:17 -0400 Subject: Rework 'MOVE ALL' to 'ALTER .. ALL IN TABLESPACE' As 'ALTER TABLESPACE .. MOVE ALL' really didn't change the tablespace but instead changed objects inside tablespaces, it made sense to rework the syntax and supporting functions to operate under the 'ALTER (TABLE|INDEX|MATERIALIZED VIEW)' syntax and to be in tablecmds.c. Pointed out by Alvaro, who also suggested the new syntax. Back-patch to 9.4. --- src/include/commands/tablespace.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/include/commands/tablespace.h') diff --git a/src/include/commands/tablespace.h b/src/include/commands/tablespace.h index 1603f677a7d..c7af55917d7 100644 --- a/src/include/commands/tablespace.h +++ b/src/include/commands/tablespace.h @@ -43,7 +43,6 @@ extern Oid CreateTableSpace(CreateTableSpaceStmt *stmt); extern void DropTableSpace(DropTableSpaceStmt *stmt); extern Oid RenameTableSpace(const char *oldname, const char *newname); extern Oid AlterTableSpaceOptions(AlterTableSpaceOptionsStmt *stmt); -extern Oid AlterTableSpaceMove(AlterTableSpaceMoveStmt *stmt); extern void TablespaceCreateDbspace(Oid spcNode, Oid dbNode, bool isRedo); -- cgit v1.2.3