diff options
author | Fujii Masao <fujii@postgresql.org> | 2017-01-27 00:42:33 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2017-01-27 00:42:33 +0900 |
commit | bdadf36eb40e88f93a9daf20ecd005595ebec1cd (patch) | |
tree | 57d15bba2c90e2aed588a686f2d34f07c56ef09c /src | |
parent | 5a366b4ff4ceceb9793fcc13c3f097ee0d32c56d (diff) | |
download | postgresql-bdadf36eb40e88f93a9daf20ecd005595ebec1cd.tar.gz postgresql-bdadf36eb40e88f93a9daf20ecd005595ebec1cd.zip |
Fix typo in description for pg_replication_origin_advance function.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index c1f492b3966..31c828a3f27 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -5321,7 +5321,7 @@ DATA(insert OID = 6011 ( pg_replication_origin_xact_reset PGNSP PGUID 12 1 0 0 0 DESCR("reset the transaction's origin lsn and timestamp"); DATA(insert OID = 6012 ( pg_replication_origin_advance PGNSP PGUID 12 1 0 0 0 f f f f t f v u 2 0 2278 "25 3220" _null_ _null_ _null_ _null_ _null_ pg_replication_origin_advance _null_ _null_ _null_ )); -DESCR("advance replication itentifier to specific location"); +DESCR("advance replication identifier to specific location"); DATA(insert OID = 6013 ( pg_replication_origin_progress PGNSP PGUID 12 1 0 0 0 f f f f t f v u 2 0 3220 "25 16" _null_ _null_ _null_ _null_ _null_ pg_replication_origin_progress _null_ _null_ _null_ )); DESCR("get an individual replication origin's replication progress"); |