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
b41aa390
Commit
b41aa390
authored
Nov 27, 1996
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TransactionIdIsInProgress moved to shmem.c
parent
f0c5a6c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/include/access/transam.h
src/include/access/transam.h
+1
-2
src/include/storage/shmem.h
src/include/storage/shmem.h
+2
-1
No files found.
src/include/access/transam.h
View file @
b41aa390
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: transam.h,v 1.
5 1996/11/10 03:04:41 momjian
Exp $
* $Id: transam.h,v 1.
6 1996/11/27 07:30:28 vadim
Exp $
*
*
* NOTES
* NOTES
* Transaction System Version 101 now support proper oid
* Transaction System Version 101 now support proper oid
...
@@ -150,7 +150,6 @@ extern void TransRecover(Relation logRelation);
...
@@ -150,7 +150,6 @@ extern void TransRecover(Relation logRelation);
extern
void
InitializeTransactionLog
(
void
);
extern
void
InitializeTransactionLog
(
void
);
extern
bool
TransactionIdDidCommit
(
TransactionId
transactionId
);
extern
bool
TransactionIdDidCommit
(
TransactionId
transactionId
);
extern
bool
TransactionIdDidAbort
(
TransactionId
transactionId
);
extern
bool
TransactionIdDidAbort
(
TransactionId
transactionId
);
extern
bool
TransactionIdIsInProgress
(
TransactionId
transactionId
);
extern
void
TransactionIdCommit
(
TransactionId
transactionId
);
extern
void
TransactionIdCommit
(
TransactionId
transactionId
);
extern
void
TransactionIdAbort
(
TransactionId
transactionId
);
extern
void
TransactionIdAbort
(
TransactionId
transactionId
);
extern
void
TransactionIdSetInProgress
(
TransactionId
transactionId
);
extern
void
TransactionIdSetInProgress
(
TransactionId
transactionId
);
...
...
src/include/storage/shmem.h
View file @
b41aa390
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: shmem.h,v 1.
3 1996/11/10 03:05:56 momjian
Exp $
* $Id: shmem.h,v 1.
4 1996/11/27 07:32:10 vadim
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -68,6 +68,7 @@ extern bool ShmemPIDLookup(int pid, SHMEM_OFFSET* locationPtr);
...
@@ -68,6 +68,7 @@ extern bool ShmemPIDLookup(int pid, SHMEM_OFFSET* locationPtr);
extern
SHMEM_OFFSET
ShmemPIDDestroy
(
int
pid
);
extern
SHMEM_OFFSET
ShmemPIDDestroy
(
int
pid
);
extern
long
*
ShmemInitStruct
(
char
*
name
,
unsigned
long
size
,
extern
long
*
ShmemInitStruct
(
char
*
name
,
unsigned
long
size
,
bool
*
foundPtr
);
bool
*
foundPtr
);
extern
bool
TransactionIdIsInProgress
(
TransactionId
xid
);
typedef
int
TableID
;
typedef
int
TableID
;
...
...
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