1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

Make parser functions static where possible.

This commit is contained in:
Bruce Momjian
1997-11-26 03:43:18 +00:00
parent 97ad0b1cd4
commit b704426618
18 changed files with 179 additions and 181 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.11 1997/11/24 05:09:24 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.12 1997/11/26 03:42:58 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -24,6 +24,8 @@
#include "utils/palloc.h"
#include "utils/tqual.h"
static bool heapisoverride(void);
extern bool PostgresIsInitialized;
/*
@@ -49,8 +51,7 @@ setheapoverride(bool on)
}
}
/* static */
bool
static bool
heapisoverride()
{
if (!TransactionIdIsValid(HeapSpecialTransactionId))