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
484af9b3
Commit
484af9b3
authored
Oct 12, 2011
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify RelationGetBufferForTuple() to use a typedef, rather than a
struct, to help pgindent.
parent
6e22ba03
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/backend/access/heap/hio.c
src/backend/access/heap/hio.c
+1
-1
src/include/access/hio.h
src/include/access/hio.h
+1
-1
No files found.
src/backend/access/heap/hio.c
View file @
484af9b3
...
...
@@ -213,7 +213,7 @@ GetVisibilityMapPins(Relation relation, Buffer buffer1, Buffer buffer2,
Buffer
RelationGetBufferForTuple
(
Relation
relation
,
Size
len
,
Buffer
otherBuffer
,
int
options
,
struct
BulkInsertStateData
*
bistate
,
BulkInsertState
bistate
,
Buffer
*
vmbuffer
,
Buffer
*
vmbuffer_other
)
{
bool
use_fsm
=
!
(
options
&
HEAP_INSERT_SKIP_FSM
);
...
...
src/include/access/hio.h
View file @
484af9b3
...
...
@@ -38,7 +38,7 @@ extern void RelationPutHeapTuple(Relation relation, Buffer buffer,
HeapTuple
tuple
);
extern
Buffer
RelationGetBufferForTuple
(
Relation
relation
,
Size
len
,
Buffer
otherBuffer
,
int
options
,
struct
BulkInsertStateData
*
bistate
,
BulkInsertState
bistate
,
Buffer
*
vmbuffer
,
Buffer
*
vmbuffer_other
);
#endif
/* HIO_H */
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