8000 Logical replication support by zilder · Pull Request #42 · postgrespro/testgres · GitHub
[go: up one dir, main page]

Skip to content

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jun 1, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
8000 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
Prev Previous commit
Next Next commit
Merge branch 'master' into logical
  • Loading branch information
zilder committed May 31, 2018
commit d60cdcb753c44b9315206acafa33af244bf57955
3 changes: 2 additions & 1 deletion testgres/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
StartNodeException, \
TimeoutException, \
InitNodeException, \
TestgresException
TestgresException, \
BackupException

from .logger import TestgresLogger

Expand Down
2 changes: 1 addition & 1 deletion testgres/pubsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ def add_tables(self, tables, dbname=None, username=None):

class Subscription(object):
def __init__(self,
name,
node,
publication,
name=None,
dbname=None,
username=None,
**params):
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0