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
6597ec9b
Commit
6597ec9b
authored
Dec 03, 2014
by
Alvaro Herrera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos
parent
bc2f43ea
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
src/backend/access/transam/clog.c
src/backend/access/transam/clog.c
+1
-1
src/backend/access/transam/xloginsert.c
src/backend/access/transam/xloginsert.c
+1
-1
src/include/access/rmgrlist.h
src/include/access/rmgrlist.h
+1
-1
No files found.
src/backend/access/transam/clog.c
View file @
6597ec9b
...
...
@@ -419,7 +419,7 @@ TransactionIdGetStatus(TransactionId xid, XLogRecPtr *lsn)
*
* Testing during the PostgreSQL 9.2 development cycle revealed that on a
* large multi-processor system, it was possible to have more CLOG page
* requests in flight at one time than the num
eb
r of CLOG buffers which existed
* requests in flight at one time than the num
be
r of CLOG buffers which existed
* at that time, which was hardcoded to 8. Further testing revealed that
* performance dropped off with more than 32 CLOG buffers, possibly because
* the linear buffer search algorithm doesn't scale well.
...
...
src/backend/access/transam/xloginsert.c
View file @
6597ec9b
...
...
@@ -299,7 +299,7 @@ XLogRegisterBlock(uint8 block_id, RelFileNode *rnode, ForkNumber forknum,
* Add data to the WAL record that's being constructed.
*
* The data is appended to the "main chunk", available at replay with
* XLog
GetRec
Data().
* XLog
RecGet
Data().
*/
void
XLogRegisterData
(
char
*
data
,
int
len
)
...
...
src/include/access/rmgrlist.h
View file @
6597ec9b
...
...
@@ -24,7 +24,7 @@
* Changes to this list possibly need a XLOG_PAGE_MAGIC bump.
*/
/* symbol name, textual name, redo, desc, startup, cleanup */
/* symbol name, textual name, redo, desc,
identify,
startup, cleanup */
PG_RMGR
(
RM_XLOG_ID
,
"XLOG"
,
xlog_redo
,
xlog_desc
,
xlog_identify
,
NULL
,
NULL
)
PG_RMGR
(
RM_XACT_ID
,
"Transaction"
,
xact_redo
,
xact_desc
,
xact_identify
,
NULL
,
NULL
)
PG_RMGR
(
RM_SMGR_ID
,
"Storage"
,
smgr_redo
,
smgr_desc
,
smgr_identify
,
NULL
,
NULL
)
...
...
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