aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tcop/utility.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2009-06-11 20:46:11 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2009-06-11 20:46:11 +0000
commit44aa60fa7c68355c630cc4fa5c677364dcfd06a3 (patch)
treee076d419dcad5d1867888a6177123d1de3b26607 /src/backend/tcop/utility.c
parentdb16e7734918c63589fe607be94699449a618b5a (diff)
downloadpostgresql-44aa60fa7c68355c630cc4fa5c677364dcfd06a3.tar.gz
postgresql-44aa60fa7c68355c630cc4fa5c677364dcfd06a3.zip
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.
Diffstat (limited to 'src/backend/tcop/utility.c')
-rw-r--r--src/backend/tcop/utility.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/tcop/utility.c b/src/backend/tcop/utility.c
index 84b357665dd..f51f90f86b4 100644
--- a/src/backend/tcop/utility.c
+++ b/src/backend/tcop/utility.c
@@ -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);
}