-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing headers, documentation or updated copyright years
- Loading branch information
1 parent
89ff845
commit 9f62cef
Showing
7 changed files
with
28 additions
and
5 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
{-| | ||
Module : Database.PostgreSQL.Replicant | ||
Description : A PostgreSQL streaming replication library | ||
Copyright : (c) James King, 2021 | ||
Copyright : (c) James King, 2020, 2021 | ||
License : BSD3 | ||
Maintainer : [email protected] | ||
Stability : experimental | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{-| | ||
Module : Database.PostgreSQL.Replicant.Message | ||
Description : Streaming replication message types | ||
Copyright : (c) James King, 2021 | ||
Copyright : (c) James King, 2020, 2021 | ||
License : BSD3 | ||
Maintainer : [email protected] | ||
Stability : experimental | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{-| | ||
Module : Database.PostgreSQL.Replicant.Protocol | ||
Description : Streaming replication protocol | ||
Copyright : (c) James King, 2021 | ||
Copyright : (c) James King, 2020, 2021 | ||
License : BSD3 | ||
Maintainer : [email protected] | ||
Stability : experimental | ||
|
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 |
---|---|---|
@@ -1,3 +1,14 @@ | ||
{-| | ||
Module : Database.PostgreSQL.Replicant.Queue | ||
Description : Bounded and unbounded FIFO queues | ||
Copyright : (c) James King, 2020, 2021 | ||
License : BSD3 | ||
Maintainer : [email protected] | ||
Stability : experimental | ||
Portability : POSIX | ||
Shared FIFO queues | ||
-} | ||
module Database.PostgreSQL.Replicant.Queue where | ||
|
||
import Control.Concurrent.MVar | ||
|
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 |
---|---|---|
@@ -1,3 +1,15 @@ | ||
{-| | ||
Module : Database.PostgreSQL.Replicant.ReplicationSlot | ||
Description : Replication slot query commands | ||
Copyright : (c) James King, 2020, 2021 | ||
License : BSD3 | ||
Maintainer : [email protected] | ||
Stability : experimental | ||
Portability : POSIX | ||
This module contains the PostgreSQL queries, types, and functions for | ||
working with querying, creating, and working with replication slots. | ||
-} | ||
module Database.PostgreSQL.Replicant.ReplicationSlot where | ||
|
||
import Control.Exception | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{-| | ||
Module : Database.PostgreSQL.Replicant.State | ||
Description : Internal replication stream state | ||
Copyright : (c) James King, 2021 | ||
Copyright : (c) James King, 2020, 2021 | ||
License : BSD3 | ||
Maintainer : [email protected] | ||
Stability : experimental | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{-| | ||
Module : Database.PostgreSQL.Replicant.Types.Lsn | ||
Description : Types and parsers for LSNs | ||
Copyright : (c) James King, 2021 | ||
Copyright : (c) James King, 2020, 2021 | ||
License : BSD3 | ||
Maintainer : [email protected] | ||
Stability : experimental | ||
|