diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2023-06-20 09:50:43 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2023-06-20 09:50:43 -0400 |
commit | b334612b8aee9f9a34378982d8938b201dfad323 (patch) | |
tree | a47c67522e7886c2aee179cbb260e47218c16d1d /src/backend/utils/adt/pgstatfuncs.c | |
parent | 877bf52cffe587d33556e6259f610eb932699706 (diff) | |
download | postgresql-b334612b8aee9f9a34378982d8938b201dfad323.tar.gz postgresql-b334612b8aee9f9a34378982d8938b201dfad323.zip |
Pre-beta2 mechanical code beautification.
Run pgindent and pgperltidy. It seems we're still some ways
away from all committers doing this automatically. Now that
we have a buildfarm animal that will whine about poorly-indented
code, we'll try to keep the tree more tidy.
Discussion: https://postgr.es/m/3156045.1687208823@sss.pgh.pa.us
Diffstat (limited to 'src/backend/utils/adt/pgstatfuncs.c')
-rw-r--r-- | src/backend/utils/adt/pgstatfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/pgstatfuncs.c b/src/backend/utils/adt/pgstatfuncs.c index 49adc319fc8..2a4c8ef87ff 100644 --- a/src/backend/utils/adt/pgstatfuncs.c +++ b/src/backend/utils/adt/pgstatfuncs.c @@ -601,7 +601,7 @@ pg_stat_get_activity(PG_FUNCTION_ARGS) values[26] = CStringGetTextDatum(beentry->st_gssstatus->gss_princ); values[27] = BoolGetDatum(beentry->st_gssstatus->gss_enc); /* GSS Encryption in use */ values[28] = BoolGetDatum(beentry->st_gssstatus->gss_delegation); /* GSS credentials - * delegated */ + * delegated */ } else { |