Skip to content

Commit a3df0d4

Browse files
committed
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 dd1a3bc. Author: Daisuke Higuchi <higuchi.daisuke11@gmail.com> Discussion: https://postgr.es/m/CAEVT6c8M39cqWje-df39wWr0KWcDgGKd5fMvQo84zvCXKoEL9Q@mail.gmail.com
1 parent 2e94721 commit a3df0d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/catalog/system_views.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ CREATE VIEW pg_stat_activity AS
895895
S.wait_event,
896896
S.state,
897897
S.backend_xid,
898-
s.backend_xmin,
898+
S.backend_xmin,
899899
S.query_id,
900900
S.query,
901901
S.backend_type

0 commit comments

Comments
 (0)