1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-12 21:01:52 +03:00

WAL fixes.

This commit is contained in:
Vadim B. Mikheev
2000-10-29 18:33:41 +00:00
parent 433cd770bc
commit e3ba543525
3 changed files with 109 additions and 48 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.78 2000/10/28 16:20:53 vadim Exp $
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.79 2000/10/29 18:33:41 vadim Exp $
*
* NOTES
* Transaction aborts can now occur two ways:
@ -1807,8 +1807,10 @@ xact_desc(char *buf, uint8 xl_info, char* rec)
void
XactPushRollback(void (*func) (void *), void* data)
{
#ifdef XLOG_II
if (_RollbackFunc != NULL)
elog(STOP, "XactPushRollback: already installed");
#endif
_RollbackFunc = func;
_RollbackData = data;