Fix formatting and comment typos

Justin Pryzby

Discussion: https://www.postgresql.org/message-id/20220801181136.GJ15006%40telsasoft.com
This commit is contained in:
John Naylor 2022-08-04 16:41:29 +07:00
parent 9f08803828
commit bcabbfc6a9
3 changed files with 4 additions and 5 deletions

View File

@ -188,7 +188,7 @@ CreateDatabaseUsingWalLog(Oid src_dboid, Oid dst_dboid,
/* /*
* If the relation is from the source db's default tablespace then we * If the relation is from the source db's default tablespace then we
* need to create it in the destinations db's default tablespace. * need to create it in the destination db's default tablespace.
* Otherwise, we need to create in the same tablespace as it is in the * Otherwise, we need to create in the same tablespace as it is in the
* source database. * source database.
*/ */
@ -1351,8 +1351,8 @@ createdb(ParseState *pstate, const CreatedbStmt *stmt)
/* /*
* If we're going to be reading data for the to-be-created database into * If we're going to be reading data for the to-be-created database into
* shared_buffers, take a lock on it. Nobody should know that this * shared_buffers, take a lock on it. Nobody should know that this
* database exists yet, but it's good to maintain the invariant that a * database exists yet, but it's good to maintain the invariant that an
* lock an AccessExclusiveLock on the database is sufficient to drop all * AccessExclusiveLock on the database is sufficient to drop all
* of its buffers without worrying about more being read later. * of its buffers without worrying about more being read later.
* *
* Note that we need to do this before entering the * Note that we need to do this before entering the

View File

@ -3284,7 +3284,6 @@ show_hashagg_info(AggState *aggstate, ExplainState *es)
if (es->format != EXPLAIN_FORMAT_TEXT) if (es->format != EXPLAIN_FORMAT_TEXT)
{ {
if (es->costs) if (es->costs)
ExplainPropertyInteger("Planned Partitions", NULL, ExplainPropertyInteger("Planned Partitions", NULL,
aggstate->hash_planned_partitions, es); aggstate->hash_planned_partitions, es);

View File

@ -262,7 +262,7 @@ typedef struct ReorderBufferTXN
* aborted. This can be a * aborted. This can be a
* * plain commit record * * plain commit record
* * plain commit record, of a parent transaction * * plain commit record, of a parent transaction
* * prepared tansaction * * prepared transaction
* * prepared transaction commit * * prepared transaction commit
* * plain abort record * * plain abort record
* * prepared transaction abort * * prepared transaction abort