pg-pglogical 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/lib/pg/pglogical/client.rb +1 -1
- data/lib/pg/pglogical/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc47fb1c124f67c34bc3598d46581c52f0e6c7f5
|
|
4
|
+
data.tar.gz: f23bf2966a02ee3a7500df29db376a492a3b78d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a4a2984356ff7d273e36c2841f2a29600a6f9eaba82b03965e3cab18617164ae27524adcd5a126c55eb9bbdd92e68e525c76b3558413180465973ff49783c11
|
|
7
|
+
data.tar.gz: 8e4dea9c8a3ee8834cba848642690e19713561b8761f303086a71a708745c8b675580fb0360966e6820900ca11786fa89bbc4984bb0aaa4c18cad39b5c1bdb94
|
data/CHANGELOG.md
CHANGED
|
@@ -6,9 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.1.1] - 2018-02-28
|
|
10
|
+
### Fixed
|
|
11
|
+
- Show all subscriptions defined on global region, even if no corresponding node exists on remote [[#20](https://github.com/ManageIQ/pg-pglogical/pull/20)]
|
|
12
|
+
|
|
9
13
|
## [1.1.0] - 2017-02-27
|
|
10
14
|
### Added
|
|
11
15
|
- Add the remote and local lsn to the subscription status [[#8](https://github.com/ManageIQ/pg-pglogical/pull/8)]
|
|
12
16
|
|
|
13
|
-
[Unreleased]: https://github.com/ManageIQ/pg-pglogical/compare/v1.1.
|
|
17
|
+
[Unreleased]: https://github.com/ManageIQ/pg-pglogical/compare/v1.1.1...HEAD
|
|
14
18
|
[1.1.0]: https://github.com/ManageIQ/pg-pglogical/compare/v1.0.0...v1.1.0
|
|
19
|
+
[1.1.1]: https://github.com/ManageIQ/pg-pglogical/compare/v1.1.0...v1.1.1
|
data/lib/pg/pglogical/client.rb
CHANGED
|
@@ -221,7 +221,7 @@ module PG
|
|
|
221
221
|
sql = <<-SQL
|
|
222
222
|
SELECT sub.*, stat.remote_lsn AS remote_replication_lsn, stat.local_lsn AS local_replication_lsn
|
|
223
223
|
FROM pglogical.show_subscription_status($1) sub
|
|
224
|
-
JOIN pg_replication_origin_status stat
|
|
224
|
+
LEFT JOIN pg_replication_origin_status stat
|
|
225
225
|
ON sub.slot_name = stat.external_id
|
|
226
226
|
SQL
|
|
227
227
|
|
data/lib/pg/pglogical/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pg-pglogical
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Carboni
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-02-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -127,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
127
127
|
version: '0'
|
|
128
128
|
requirements: []
|
|
129
129
|
rubyforge_project:
|
|
130
|
-
rubygems_version: 2.
|
|
130
|
+
rubygems_version: 2.6.14
|
|
131
131
|
signing_key:
|
|
132
132
|
specification_version: 4
|
|
133
133
|
summary: A ruby gem for configuring and using pglogical
|