aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2025-07-01 09:41:42 +0900
committerMichael Paquier <michael@paquier.xyz>2025-07-01 09:41:42 +0900
commita3df0d43d93789777fd06bb7ffa8cdc1f06d63c3 (patch)
tree4527ceb3fa8c13235f8bcae8a05e40e11d7e5410 /src
parent2e947217474c15c7fd9011d1ab2b0d4657b3eae2 (diff)
downloadpostgresql-a3df0d43d93789777fd06bb7ffa8cdc1f06d63c3.tar.gz
postgresql-a3df0d43d93789777fd06bb7ffa8cdc1f06d63c3.zip
Fix typo in system_views.sql's definition of pg_stat_activity
backend_xmin used a lower-character 's' instead of the upper-character 'S' like the other attributes. This is harmless, but let's be consistent. Issue introduced in dd1a3bccca24. Author: Daisuke Higuchi <higuchi.daisuke11@gmail.com> Discussion: https://postgr.es/m/CAEVT6c8M39cqWje-df39wWr0KWcDgGKd5fMvQo84zvCXKoEL9Q@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r--src/backend/catalog/system_views.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/catalog/system_views.sql b/src/backend/catalog/system_views.sql
index 08f780a2e63..e5dbbe61b81 100644
--- a/src/backend/catalog/system_views.sql
+++ b/src/backend/catalog/system_views.sql
@@ -895,7 +895,7 @@ CREATE VIEW pg_stat_activity AS
S.wait_event,
S.state,
S.backend_xid,
- s.backend_xmin,
+ S.backend_xmin,
S.query_id,
S.query,
S.backend_type