Move the responsibility of writing a "unlogged WAL operation" record from
heap_sync() to the callers, because heap_sync() is sometimes called even if the operation itself is WAL-logged. This eliminates the bogus unlogged records from CLUSTER that Simon Riggs reported, patch by Fujii Masao.
This commit is contained in:
parent
808969d0e7
commit
9de778b24b
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.284 2010/01/29 17:10:05 sriggs Exp $
|
* $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.285 2010/02/03 10:01:29 heikki Exp $
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* INTERFACE ROUTINES
|
* INTERFACE ROUTINES
|
||||||
@ -5074,16 +5074,10 @@ heap2_desc(StringInfo buf, uint8 xl_info, char *rec)
|
|||||||
void
|
void
|
||||||
heap_sync(Relation rel)
|
heap_sync(Relation rel)
|
||||||
{
|
{
|
||||||
char reason[NAMEDATALEN + 30];
|
|
||||||
|
|
||||||
/* temp tables never need fsync */
|
/* temp tables never need fsync */
|
||||||
if (rel->rd_istemp)
|
if (rel->rd_istemp)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
snprintf(reason, sizeof(reason), "heap inserts on \"%s\"",
|
|
||||||
RelationGetRelationName(rel));
|
|
||||||
XLogReportUnloggedStatement(reason);
|
|
||||||
|
|
||||||
/* main heap */
|
/* main heap */
|
||||||
FlushRelationBuffers(rel);
|
FlushRelationBuffers(rel);
|
||||||
/* FlushRelationBuffers will have opened rd_smgr */
|
/* FlushRelationBuffers will have opened rd_smgr */
|
||||||
|
@ -96,7 +96,7 @@
|
|||||||
* Portions Copyright (c) 1994-5, Regents of the University of California
|
* Portions Copyright (c) 1994-5, Regents of the University of California
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/access/heap/rewriteheap.c,v 1.19 2010/01/02 16:57:35 momjian Exp $
|
* $PostgreSQL: pgsql/src/backend/access/heap/rewriteheap.c,v 1.20 2010/02/03 10:01:29 heikki Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -278,6 +278,15 @@ end_heap_rewrite(RewriteState state)
|
|||||||
(char *) state->rs_buffer, true);
|
(char *) state->rs_buffer, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Write an XLOG UNLOGGED record if WAL-logging was skipped */
|
||||||
|
if (!state->rs_use_wal && !state->rs_new_rel->rd_istemp)
|
||||||
|
{
|
||||||
|
char reason[NAMEDATALEN + 30];
|
||||||
|
snprintf(reason, sizeof(reason), "heap rewrite on \"%s\"",
|
||||||
|
RelationGetRelationName(state->rs_new_rel));
|
||||||
|
XLogReportUnloggedStatement(reason);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If the rel isn't temp, must fsync before commit. We use heap_sync to
|
* If the rel isn't temp, must fsync before commit. We use heap_sync to
|
||||||
* ensure that the toast table gets fsync'd too.
|
* ensure that the toast table gets fsync'd too.
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.322 2010/01/31 18:15:39 tgl Exp $
|
* $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.323 2010/02/03 10:01:29 heikki Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -2225,7 +2225,13 @@ CopyFrom(CopyState cstate)
|
|||||||
* indexes since those use WAL anyway)
|
* indexes since those use WAL anyway)
|
||||||
*/
|
*/
|
||||||
if (hi_options & HEAP_INSERT_SKIP_WAL)
|
if (hi_options & HEAP_INSERT_SKIP_WAL)
|
||||||
|
{
|
||||||
|
char reason[NAMEDATALEN + 30];
|
||||||
|
snprintf(reason, sizeof(reason), "COPY FROM on \"%s\"",
|
||||||
|
RelationGetRelationName(cstate->rel));
|
||||||
|
XLogReportUnloggedStatement(reason);
|
||||||
heap_sync(cstate->rel);
|
heap_sync(cstate->rel);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.322 2010/02/03 01:14:16 tgl Exp $
|
* $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.323 2010/02/03 10:01:29 heikki Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -3297,7 +3297,13 @@ ATRewriteTable(AlteredTableInfo *tab, Oid OIDNewHeap)
|
|||||||
|
|
||||||
/* If we skipped writing WAL, then we need to sync the heap. */
|
/* If we skipped writing WAL, then we need to sync the heap. */
|
||||||
if (hi_options & HEAP_INSERT_SKIP_WAL)
|
if (hi_options & HEAP_INSERT_SKIP_WAL)
|
||||||
|
{
|
||||||
|
char reason[NAMEDATALEN + 30];
|
||||||
|
snprintf(reason, sizeof(reason), "table rewrite on \"%s\"",
|
||||||
|
RelationGetRelationName(newrel));
|
||||||
|
XLogReportUnloggedStatement(reason);
|
||||||
heap_sync(newrel);
|
heap_sync(newrel);
|
||||||
|
}
|
||||||
|
|
||||||
heap_close(newrel, NoLock);
|
heap_close(newrel, NoLock);
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/executor/execMain.c,v 1.343 2010/01/28 23:21:11 petere Exp $
|
* $PostgreSQL: pgsql/src/backend/executor/execMain.c,v 1.344 2010/02/03 10:01:30 heikki Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -2240,7 +2240,13 @@ CloseIntoRel(QueryDesc *queryDesc)
|
|||||||
|
|
||||||
/* If we skipped using WAL, must heap_sync before commit */
|
/* If we skipped using WAL, must heap_sync before commit */
|
||||||
if (myState->hi_options & HEAP_INSERT_SKIP_WAL)
|
if (myState->hi_options & HEAP_INSERT_SKIP_WAL)
|
||||||
|
{
|
||||||
|
char reason[NAMEDATALEN + 30];
|
||||||
|
snprintf(reason, sizeof(reason), "SELECT INTO on \"%s\"",
|
||||||
|
RelationGetRelationName(myState->rel));
|
||||||
|
XLogReportUnloggedStatement(reason);
|
||||||
heap_sync(myState->rel);
|
heap_sync(myState->rel);
|
||||||
|
}
|
||||||
|
|
||||||
/* close rel, but keep lock until commit */
|
/* close rel, but keep lock until commit */
|
||||||
heap_close(myState->rel, NoLock);
|
heap_close(myState->rel, NoLock);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user