-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Streaming Replication 6th] Add new message types for replication (#57)
* Add shared messages between client and server * Add new client messages * Add new server messages * Add Logical Replication Messages Formats * export messages as a stand-alone library This is exported separately to avoid polluting the namespace when the user is not interested in the messages. Yet, this is necessary for those needs to communicate in replication mode * fix tyop
- Loading branch information
Showing
5 changed files
with
867 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
library postgres.messages; | ||
|
||
export 'src/client_messages.dart'; | ||
export 'src/logical_replication_messages.dart'; | ||
export 'src/server_messages.dart'; | ||
export 'src/shared_messages.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.