diff options
Diffstat (limited to 'src/backend/commands/tablecmds.c')
-rw-r--r-- | src/backend/commands/tablecmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index c30aa69c555..5de8e96f5fd 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.208 2006/12/30 21:21:53 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.209 2007/01/03 18:11:01 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -6083,7 +6083,7 @@ copy_relation_data(Relation rel, SMgrRelation dst) * rel, because there's no need for smgr to schedule an fsync for this * write; we'll do it ourselves below. */ - smgrwrite(dst, blkno, buf, true); + smgrextend(dst, blkno, buf, true); } /* |