Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Logical replication support#42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
funbringer merged 16 commits intopostgrespro:masterfromzilder:logical
Jun 1, 2018
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
Show all changes
16 commits
Select commitHold shift + click to select a range
ca5b546
Logical replication
zilderMar 16, 2018
bb01c7d
Skip logical replication test on PostgreSQL versions below 10
zilderMar 16, 2018
782484b
Fix logical replication for python3
zilderMar 16, 2018
f8b95c6
Merge branch 'master' into logical
zilderMar 19, 2018
b1cba73
Some minor refactoring of logical replication
zilderMar 22, 2018
954879a
Added options_string() func
zilderMar 22, 2018
0741c70
Merge branch 'master' into logical
zilderMar 22, 2018
f4e0bd0
Minor refactoring
zilderMar 22, 2018
f48623b
Add failing logical replication test for 9.6
zilderMar 22, 2018
138c6cc
Added test for Publication.add_tables()
zilderMar 22, 2018
f652bf4
Merge branch 'master' into logical. Also testgres.pubsub was added to…
zilderMar 26, 2018
bc1002f
Additional subscription catchup test
zilderMar 27, 2018
08ed6ef
Some refactoring of logical replication API and formatting
zilderMar 27, 2018
4b279ef
minor refactoring
zilderMay 31, 2018
d60cdcb
Merge branch 'master' into logical
zilderMay 31, 2018
50e02ff
change safe_psql() call to execute() in pubsub.py
zilderJun 1, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
change safe_psql() call to execute() in pubsub.py
  • Loading branch information
@zilder
zilder committedJun 1, 2018
commit50e02ffe6100e0916fb239fbb55c59684c72fe8a
2 changes: 1 addition & 1 deletiontestgres/api.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,7 +28,7 @@
... replica.catchup() # wait until changes are visible
... print(replica.execute('postgres', 'select count(*) from test'))
PostgresNode(name='...', port=..., base_dir='...')
[(3L,)]
[(3,)]
"""
from .node import PostgresNode

Expand Down
2 changes: 1 addition & 1 deletiontestgres/pubsub.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -77,7 +77,7 @@ def drop(self, dbname=None, username=None):
"""
Drop publication
"""
self.node.safe_psql(
self.node.execute(
"drop publication {}".format(self.name),
dbname=dbname,
username=username)
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp