1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-26 01:22:12 +03:00

Revisit AlterTableCreateToastTable's API once again, hoping to make it what

pg_migrator actually needs and not just a partial solution.  We have to be
able to specify the OID that the new toast table should be created with.
This commit is contained in:
Tom Lane
2009-06-11 20:46:11 +00:00
parent db16e77349
commit 44aa60fa7c
6 changed files with 23 additions and 14 deletions

View File

@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tcop/utility.c,v 1.308 2009/06/11 14:49:02 momjian Exp $
* $PostgreSQL: pgsql/src/backend/tcop/utility.c,v 1.309 2009/06/11 20:46:11 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -447,6 +447,7 @@ ProcessUtility(Node *parsetree,
true);
AlterTableCreateToastTable(relOid,
InvalidOid,
toast_options,
false);
}