Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
91ce16a9
Commit
91ce16a9
authored
Nov 04, 2009
by
Heikki Linnakangas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow rewriting ALTER TABLE to skip WAL logging.
Itagaki Takahiro, with small changes by me and Simon.
parent
a4d03bbc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
2 deletions
+36
-2
src/backend/commands/tablecmds.c
src/backend/commands/tablecmds.c
+36
-2
No files found.
src/backend/commands/tablecmds.c
View file @
91ce16a9
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.30
4 2009/10/14 22:14:21 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.30
5 2009/11/04 12:24:23 heikki
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -3037,6 +3037,9 @@ ATRewriteTable(AlteredTableInfo *tab, Oid OIDNewHeap)
int
i
;
ListCell
*
l
;
EState
*
estate
;
CommandId
mycid
;
BulkInsertState
bistate
;
int
hi_options
;
/*
* Open the relation(s). We have surely already locked the existing
...
...
@@ -3051,6 +3054,29 @@ ATRewriteTable(AlteredTableInfo *tab, Oid OIDNewHeap)
else
newrel
=
NULL
;
/*
* Prepare a BulkInsertState and options for heap_insert. Because
* we're building a new heap, we can skip WAL-logging and fsync it
* to disk at the end instead (unless WAL-logging is required for
* archiving). The FSM is empty too, so don't bother using it.
*/
if
(
newrel
)
{
mycid
=
GetCurrentCommandId
(
true
);
bistate
=
GetBulkInsertState
();
hi_options
=
HEAP_INSERT_SKIP_FSM
;
if
(
!
XLogArchivingActive
())
hi_options
|=
HEAP_INSERT_SKIP_WAL
;
}
else
{
/* keep compiler quiet about using these uninitialized */
mycid
=
0
;
bistate
=
NULL
;
hi_options
=
0
;
}
/*
* If we need to rewrite the table, the operation has to be propagated to
* tables that use this table's rowtype as a column type.
...
...
@@ -3252,7 +3278,7 @@ ATRewriteTable(AlteredTableInfo *tab, Oid OIDNewHeap)
/* Write the tuple out to the new relation */
if
(
newrel
)
simple_heap_insert
(
newrel
,
tupl
e
);
heap_insert
(
newrel
,
tuple
,
mycid
,
hi_options
,
bistat
e
);
ResetExprContext
(
econtext
);
...
...
@@ -3270,7 +3296,15 @@ ATRewriteTable(AlteredTableInfo *tab, Oid OIDNewHeap)
heap_close
(
oldrel
,
NoLock
);
if
(
newrel
)
{
FreeBulkInsertState
(
bistate
);
/* If we skipped writing WAL, then we need to sync the heap. */
if
(
hi_options
&
HEAP_INSERT_SKIP_WAL
)
heap_sync
(
newrel
);
heap_close
(
newrel
,
NoLock
);
}
}
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment