-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from jfinzel/version_2
Version 2
- Loading branch information
Showing
48 changed files
with
7,450 additions
and
631 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
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
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,10 @@ | ||
pg-fact-loader (2.0.0-1) unstable; urgency=medium | ||
|
||
* Add support for native logical replication | ||
* Remove support for background worker | ||
|
||
-- Jeremy Finzel <[email protected]> Wed, 12 Jul 2023 14:59:48 -0500 | ||
|
||
pg-fact-loader (1.7.0-3) unstable; urgency=medium | ||
|
||
* Disable unstable parts of test 17. (Closes: #1023226) | ||
|
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 |
---|---|---|
|
@@ -2,12 +2,42 @@ Source: pg-fact-loader | |
Section: database | ||
Priority: optional | ||
Maintainer: Jeremy Finzel <[email protected]> | ||
Build-Depends: debhelper-compat (= 13), libpq-dev, postgresql-common, postgresql-server-dev-all | ||
Build-Depends: debhelper-compat (= 12), libpq-dev, postgresql-common, postgresql-server-dev-all | ||
Standards-Version: 4.6.1 | ||
Rules-Requires-Root: no | ||
Homepage: https://github.com/enova/pg_fact_loader | ||
Vcs-Git: https://github.com/enova/pg_fact_loader.git | ||
|
||
Package: postgresql-10-pg-fact-loader | ||
Architecture: any | ||
Depends: postgresql-10, ${shlibs:Depends}, ${misc:Depends} | ||
Description: Build fact tables asynchronously with Postgres | ||
Use queue tables to build fact tables asynchronously for PostgreSQL 10. | ||
|
||
Package: postgresql-11-pg-fact-loader | ||
Architecture: any | ||
Depends: postgresql-11, ${shlibs:Depends}, ${misc:Depends} | ||
Description: Build fact tables asynchronously with Postgres | ||
Use queue tables to build fact tables asynchronously for PostgreSQL 11. | ||
|
||
Package: postgresql-12-pg-fact-loader | ||
Architecture: any | ||
Depends: postgresql-12, ${shlibs:Depends}, ${misc:Depends} | ||
Description: Build fact tables asynchronously with Postgres | ||
Use queue tables to build fact tables asynchronously for PostgreSQL 12. | ||
|
||
Package: postgresql-13-pg-fact-loader | ||
Architecture: any | ||
Depends: postgresql-13, ${shlibs:Depends}, ${misc:Depends} | ||
Description: Build fact tables asynchronously with Postgres | ||
Use queue tables to build fact tables asynchronously for PostgreSQL 13. | ||
|
||
Package: postgresql-14-pg-fact-loader | ||
Architecture: any | ||
Depends: postgresql-14, ${shlibs:Depends}, ${misc:Depends} | ||
Description: Build fact tables asynchronously with Postgres | ||
Use queue tables to build fact tables asynchronously for PostgreSQL 14. | ||
|
||
Package: postgresql-15-pg-fact-loader | ||
Architecture: any | ||
Depends: postgresql-15, ${shlibs:Depends}, ${misc:Depends} | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ Source: pg-fact-loader | |
Section: database | ||
Priority: optional | ||
Maintainer: Jeremy Finzel <[email protected]> | ||
Build-Depends: debhelper-compat (= 13), libpq-dev, postgresql-common, postgresql-server-dev-all | ||
Build-Depends: debhelper-compat (= 12), libpq-dev, postgresql-common, postgresql-server-dev-all | ||
Standards-Version: 4.6.1 | ||
Rules-Requires-Root: no | ||
Homepage: https://github.com/enova/pg_fact_loader | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,2 +1,2 @@ | ||
#!/bin/sh | ||
pg_buildext -o shared_preload_libraries=pglogical installcheck | ||
pg_buildext -o shared_preload_libraries=pglogical -o wal_level=logical installcheck |
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.