projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e94721
)
Fix typo in system_views.sql's definition of pg_stat_activity
author
Michael Paquier
Tue, 1 Jul 2025 00:41:42 +0000
(09:41 +0900)
committer
Michael Paquier
Tue, 1 Jul 2025 00:41:42 +0000
(09:41 +0900)
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
Discussion: https://postgr.es/m/CAEVT6c8M39cqWje-df39wWr0KWcDgGKd5fMvQo84zvCXKoEL9Q@mail.gmail.com
src/backend/catalog/system_views.sql
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/catalog/system_views.sql
b/src/backend/catalog/system_views.sql
index 08f780a2e638277971ef568cb10277ec35585ed2..e5dbbe61b811ab18dfea0102e66ad64c13936b61 100644
(file)
--- 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