-
Notifications
You must be signed in to change notification settings - Fork 2
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 #4 from robinportigliatti/main
Changing name to pg_restore_points
- Loading branch information
Showing
14 changed files
with
24 additions
and
28 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
2 changes: 1 addition & 1 deletion
2
expected/restore_points_test.out → expected/pg_restore_points_test.out
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 |
---|---|---|
|
@@ -2,28 +2,28 @@ | |
# | ||
# check https://nfpm.goreleaser.com/configuration for detailed usage | ||
# | ||
name: "restore_points_17" | ||
name: "pg_restore_points_17" | ||
arch: "amd64" | ||
platform: "linux" | ||
version: "v1.5" | ||
section: "database" | ||
priority: "optional" | ||
provides: | ||
- restore_points_17 | ||
- pg_restore_points_17 | ||
maintainer: "Robin Portigliatti <[email protected]>" | ||
description: | | ||
`restore_points` is a PostgreSQL extension that allows managing restore points in a PostgreSQL instance. It creates a schema, table, sequence, and function to facilitate the management and tracking of restore points. | ||
`pg_restore_points` is a PostgreSQL extension that allows managing restore points in a PostgreSQL instance. It creates a schema, table, sequence, and function to facilitate the management and tracking of restore points. | ||
homepage: "https://dalibo.com/" | ||
license: "Apache License 2.0" | ||
contents: | ||
- src: ./restore_points--1.5.sql | ||
dst: /usr/share/postgresql/17/extension/restore_points--1.5.sql | ||
- src: ./pg_restore_points--1.5.sql | ||
dst: /usr/share/postgresql/17/extension/pg_restore_points--1.5.sql | ||
file_info: | ||
mode: 0644 | ||
owner: postgres | ||
group: postgres | ||
- src: ./restore_points.control | ||
dst: /usr/share/postgresql/17/extension/restore_points.control | ||
- src: ./pg_restore_points.control | ||
dst: /usr/share/postgresql/17/extension/pg_restore_points.control | ||
file_info: | ||
mode: 0644 | ||
owner: postgres | ||
|
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,29 +2,25 @@ | |
# | ||
# check https://nfpm.goreleaser.com/configuration for detailed usage | ||
# | ||
name: "restore_points_17" | ||
name: "pg_restore_points_17" | ||
arch: "amd64" | ||
platform: "linux" | ||
version: "v1.5" | ||
section: "database" | ||
priority: "optional" | ||
provides: | ||
- restore_points_17 | ||
- pg_restore_points_17 | ||
maintainer: "Robin Portigliatti <[email protected]>" | ||
description: | | ||
`restore_points` is a PostgreSQL extension that allows managing restore points in a PostgreSQL instance. It creates a schema, table, sequence, and function to facilitate the management and tracking of restore points. | ||
`pg_restore_points` is a PostgreSQL extension that allows managing restore points in a PostgreSQL instance. It creates a schema, table, sequence, and function to facilitate the management and tracking of restore points. | ||
homepage: "https://dalibo.com/" | ||
license: "Apache License 2.0" | ||
contents: | ||
- src: ./restore_points--1.5.sql | ||
dst: /usr/pgsql-17/share/extension/restore_points--1.5.sql | ||
- src: ./pg_restore_points--1.5.sql | ||
dst: /usr/pgsql-17/share/extension/pg_restore_points--1.5.sql | ||
file_info: | ||
mode: 0644 | ||
owner: postgres | ||
group: postgres | ||
- src: ./restore_points.control | ||
dst: /usr/pgsql-17/share/extension/restore_points.control | ||
- src: ./pg_restore_points.control | ||
dst: /usr/pgsql-17/share/extension/pg_restore_points.control | ||
file_info: | ||
mode: 0644 | ||
owner: postgres | ||
group: postgres |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,4 +1,4 @@ | ||
# File restore_points.control | ||
# File pg_restore_points.control | ||
comment = 'Extension for managing restore points' | ||
default_version = '1.5' | ||
schema = 'rspt' |
File renamed without changes.
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