mirror of
https://github.com/postgres/postgres.git
synced 2025-06-30 21:42:05 +03:00
pgindent run for 9.4
This includes removing tabs after periods in C comments, which was applied to back branches, so this change should not effect backpatching.
This commit is contained in:
@ -80,7 +80,7 @@ static void process_settings(Oid databaseid, Oid roleid);
|
||||
* GetDatabaseTuple -- fetch the pg_database row for a database
|
||||
*
|
||||
* This is used during backend startup when we don't yet have any access to
|
||||
* system catalogs in general. In the worst case, we can seqscan pg_database
|
||||
* system catalogs in general. In the worst case, we can seqscan pg_database
|
||||
* using nothing but the hard-wired descriptor that relcache.c creates for
|
||||
* pg_database. In more typical cases, relcache.c was able to load
|
||||
* descriptors for both pg_database and its indexes from the shared relcache
|
||||
@ -104,7 +104,7 @@ GetDatabaseTuple(const char *dbname)
|
||||
CStringGetDatum(dbname));
|
||||
|
||||
/*
|
||||
* Open pg_database and fetch a tuple. Force heap scan if we haven't yet
|
||||
* Open pg_database and fetch a tuple. Force heap scan if we haven't yet
|
||||
* built the critical shared relcache entries (i.e., we're starting up
|
||||
* without a shared relcache cache file).
|
||||
*/
|
||||
@ -147,7 +147,7 @@ GetDatabaseTupleByOid(Oid dboid)
|
||||
ObjectIdGetDatum(dboid));
|
||||
|
||||
/*
|
||||
* Open pg_database and fetch a tuple. Force heap scan if we haven't yet
|
||||
* Open pg_database and fetch a tuple. Force heap scan if we haven't yet
|
||||
* built the critical shared relcache entries (i.e., we're starting up
|
||||
* without a shared relcache cache file).
|
||||
*/
|
||||
@ -186,7 +186,7 @@ PerformAuthentication(Port *port)
|
||||
* In EXEC_BACKEND case, we didn't inherit the contents of pg_hba.conf
|
||||
* etcetera from the postmaster, and have to load them ourselves.
|
||||
*
|
||||
* FIXME: [fork/exec] Ugh. Is there a way around this overhead?
|
||||
* FIXME: [fork/exec] Ugh. Is there a way around this overhead?
|
||||
*/
|
||||
#ifdef EXEC_BACKEND
|
||||
if (!load_hba())
|
||||
@ -310,7 +310,7 @@ CheckMyDatabase(const char *name, bool am_superuser)
|
||||
name)));
|
||||
|
||||
/*
|
||||
* Check privilege to connect to the database. (The am_superuser test
|
||||
* Check privilege to connect to the database. (The am_superuser test
|
||||
* is redundant, but since we have the flag, might as well check it
|
||||
* and save a few cycles.)
|
||||
*/
|
||||
@ -326,7 +326,7 @@ CheckMyDatabase(const char *name, bool am_superuser)
|
||||
* Check connection limit for this database.
|
||||
*
|
||||
* There is a race condition here --- we create our PGPROC before
|
||||
* checking for other PGPROCs. If two backends did this at about the
|
||||
* checking for other PGPROCs. If two backends did this at about the
|
||||
* same time, they might both think they were over the limit, while
|
||||
* ideally one should succeed and one fail. Getting that to work
|
||||
* exactly seems more trouble than it is worth, however; instead we
|
||||
@ -454,7 +454,7 @@ InitializeMaxBackends(void)
|
||||
|
||||
/* the extra unit accounts for the autovacuum launcher */
|
||||
MaxBackends = MaxConnections + autovacuum_max_workers + 1 +
|
||||
+ max_worker_processes;
|
||||
+max_worker_processes;
|
||||
|
||||
/* internal error because the values were all checked previously */
|
||||
if (MaxBackends > MAX_BACKENDS)
|
||||
@ -491,7 +491,7 @@ BaseInit(void)
|
||||
* Initialize POSTGRES.
|
||||
*
|
||||
* The database can be specified by name, using the in_dbname parameter, or by
|
||||
* OID, using the dboid parameter. In the latter case, the actual database
|
||||
* OID, using the dboid parameter. In the latter case, the actual database
|
||||
* name can be returned to the caller in out_dbname. If out_dbname isn't
|
||||
* NULL, it must point to a buffer of size NAMEDATALEN.
|
||||
*
|
||||
@ -912,7 +912,7 @@ InitPostgres(const char *in_dbname, Oid dboid, const char *username,
|
||||
|
||||
/*
|
||||
* Now process any command-line switches and any additional GUC variable
|
||||
* settings passed in the startup packet. We couldn't do this before
|
||||
* settings passed in the startup packet. We couldn't do this before
|
||||
* because we didn't know if client is a superuser.
|
||||
*/
|
||||
if (MyProcPort != NULL)
|
||||
|
Reference in New Issue
Block a user