-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganized repository structure (#77)
Reorganized structure of repository to make managing of files easier for the build process. Adapted from methods used in https://github.com/pgpartman/pg_partman. Updates moved into `updates` folder C code moved into `src` folder SQL code moved into `sql` folder Moved test sql script into `test` folder and renamed for clarity compared to the extension core code file Removed testing for versions of PostgreSQL no longer in community support
- Loading branch information
Showing
23 changed files
with
36 additions
and
107 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 |
---|---|---|
|
@@ -5,3 +5,6 @@ results | |
|
||
# Generated documentation | ||
|
||
# Generated extension file | ||
extension/set_user--*.sql |
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,11 @@ | ||
4.0.1 | ||
|
||
NEW FEATURES | ||
============ | ||
- Reorganized repository structure to allow for easier management of extension files during build process. | ||
- Added NO_PGXS build flag to allow building of extension without PGXS. Restores ability to build on Windows. | ||
- No changes to extension code. | ||
|
||
BUGFIXES | ||
======== | ||
- None |
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
File renamed without changes.
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,5 +1,5 @@ | ||
# set_user extension | ||
comment = 'similar to SET ROLE but with added logging' | ||
default_version = '4.0.0' | ||
default_version = '4.0.1' | ||
module_pathname = '$libdir/set_user' | ||
relocatable = false |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* set-user--4.0.0--4.0.1.sql */ | ||
|
||
-- complain if script is sourced in psql, rather than via ALTER EXTENSION | ||
\echo Use "ALTER EXTENSION set_user UPDATE" to load this file. \quit | ||
|
||
-- just bumping our version to 4.0.1. no new SQL features here, so nothing to do. |
File renamed without changes.
File renamed without changes.