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
948720ee
Commit
948720ee
authored
Nov 27, 1996
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New mdtruncate() & smgrtruncate() funcs.
parent
b41aa390
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/include/storage/smgr.h
src/include/storage/smgr.h
+3
-1
No files found.
src/include/storage/smgr.h
View file @
948720ee
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: smgr.h,v 1.
5 1996/11/10 03:06:05 momjian
Exp $
* $Id: smgr.h,v 1.
6 1996/11/27 07:33:42 vadim
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -38,6 +38,7 @@ extern int smgrflush(int16 which, Relation reln, BlockNumber blocknum,
extern
int
smgrblindwrt
(
int16
which
,
char
*
dbname
,
char
*
relname
,
Oid
dbid
,
Oid
relid
,
BlockNumber
blkno
,
char
*
buffer
);
extern
int
smgrnblocks
(
int16
which
,
Relation
reln
);
extern
int
smgrtruncate
(
int16
which
,
Relation
reln
,
int
nblocks
);
extern
int
smgrcommit
(
void
);
extern
int
smgrabort
(
void
);
extern
bool
smgriswo
(
int16
smgrno
);
...
...
@@ -59,6 +60,7 @@ extern int mdflush(Relation reln, BlockNumber blocknum, char *buffer);
extern
int
mdblindwrt
(
char
*
dbstr
,
char
*
relstr
,
Oid
dbid
,
Oid
relid
,
BlockNumber
blkno
,
char
*
buffer
);
extern
int
mdnblocks
(
Relation
reln
);
extern
int
mdtruncate
(
Relation
reln
,
int
nblocks
);
extern
int
mdcommit
(
void
);
extern
int
mdabort
(
void
);
...
...
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