mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
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 dd1a3bccca
.
Author: Daisuke Higuchi <higuchi.daisuke11@gmail.com>
Discussion: https://postgr.es/m/CAEVT6c8M39cqWje-df39wWr0KWcDgGKd5fMvQo84zvCXKoEL9Q@mail.gmail.com
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user