1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Document more #ifdef's into config.h

Get rid of ESCAPE_PATCH ifdef, as its on by default, and there is no
apparent reason for turning it off...it fixes a bug
This commit is contained in:
Marc G. Fournier
1996-10-18 05:59:17 +00:00
parent 1c00e68fad
commit 94e825145d
2 changed files with 7 additions and 24 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.2 1996/10/05 20:30:31 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.3 1996/10/18 05:59:15 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@ -295,13 +295,13 @@ Async_NotifyAtCommit()
notifyFrontEndPending = 1;
} else {
elog(DEBUG, "Notifying others");
#ifndef WIN32
#ifndef win32
if (kill(DatumGetInt32(d), SIGUSR2) < 0) {
if (errno == ESRCH) {
heap_delete(lRel, &lTuple->t_ctid);
}
}
#endif /* WIN32 */
#endif /* win32 */
}
}
ReleaseBuffer(b);