-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add new option constants_tracing (true by default) for controling of possibility to trace constants. - increase version to 2.6 - API change
- Loading branch information
Showing
17 changed files
with
74 additions
and
19 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 |
---|---|---|
|
@@ -2,15 +2,15 @@ | |
"name": "plpgsql_check", | ||
"abstract": "Additional tools for plpgsql functions validation", | ||
"description": "The plpgsql_check is PostgreSQL extension with functionality for direct or indirect extra validation of functions in plpgsql language. It verifies a validity of SQL identifiers used in plpgsql code. It try to identify a performance issues. Modern versions has integrated profiler. The table and function dependencies can be displayed", | ||
"version": "2.5.4", | ||
"version": "2.6.0", | ||
"maintainer": "Pavel STEHULE <[email protected]>", | ||
"license": "bsd", | ||
"provides": { | ||
"plpgsql_check": { | ||
"abstract": "Additional tools for plpgsql functions validation", | ||
"file": "sql/plpgsql_check_active.sql", | ||
"docfile": "README.md", | ||
"version": "2.5.4" | ||
"version": "2.6.0" | ||
} | ||
}, | ||
"prereqs": { | ||
|
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
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,6 +1,6 @@ | ||
# plpgsql_check extension | ||
comment = 'extended check for plpgsql functions' | ||
default_version = '2.5' | ||
default_version = '2.6' | ||
module_pathname = '$libdir/plpgsql_check' | ||
relocatable = false | ||
requires = 'plpgsql' |
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 @@ | |
%global sname plpgsql_check | ||
|
||
Name: %{sname}_%{pgmajorversion} | ||
Version: 2.5.4 | ||
Version: 2.6.0 | ||
Release: 1%{?dist} | ||
Summary: Additional tools for plpgsql functions validation | ||
|
||
|
@@ -49,6 +49,9 @@ rm -rf %{buildroot} | |
%{pginstdir}/share/extension/*.control | ||
|
||
%changelog | ||
* Tue Oct 31 2023 - Pavel Stehule <[email protected]> 2.6.0 | ||
- simple constant tracing support | ||
|
||
* Sat Apr 29 2023 - Pavel Stehule <[email protected]> 2.4.0 | ||
- remove support for PostgreSQL 10 and 11 | ||
|
||
|
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 @@ | |
%global sname plpgsql_check | ||
|
||
Name: %{sname}_%{pgmajorversion} | ||
Version: 2.5.4 | ||
Version: 2.6.0 | ||
Release: 1%{?dist} | ||
Summary: Additional tools for plpgsql functions validation | ||
|
||
|
@@ -49,6 +49,9 @@ rm -rf %{buildroot} | |
%{pginstdir}/share/extension/*.control | ||
|
||
%changelog | ||
* Tue Oct 31 2023 - Pavel Stehule <[email protected]> 2.6.0 | ||
- simple constant tracing support | ||
|
||
* Sat Apr 29 2023 - Pavel Stehule <[email protected]> 2.4.0 | ||
- remove support for PostgreSQL 10 and 11 | ||
|
||
|
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 @@ | |
%global sname plpgsql_check | ||
|
||
Name: %{sname}_%{pgmajorversion} | ||
Version: 2.5.4 | ||
Version: 2.6.0 | ||
Release: 1%{?dist} | ||
Summary: Additional tools for plpgsql functions validation | ||
|
||
|
@@ -49,6 +49,9 @@ rm -rf %{buildroot} | |
%{pginstdir}/share/extension/*.control | ||
|
||
%changelog | ||
* Tue Oct 31 2023 - Pavel Stehule <[email protected]> 2.6.0 | ||
- simple constant tracing support | ||
|
||
* Sat Apr 29 2023 - Pavel Stehule <[email protected]> 2.4.0 | ||
- remove support for PostgreSQL 10 and 11 | ||
|
||
|
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 @@ | |
%global sname plpgsql_check | ||
|
||
Name: %{sname}_%{pgmajorversion} | ||
Version: 2.5.4 | ||
Version: 2.6.0 | ||
Release: 1%{?dist} | ||
Summary: Additional tools for plpgsql functions validation | ||
|
||
|
@@ -49,6 +49,9 @@ rm -rf %{buildroot} | |
%{pginstdir}/share/extension/*.control | ||
|
||
%changelog | ||
* Tue Oct 31 2023 - Pavel Stehule <[email protected]> 2.6.0 | ||
- simple constant tracing support | ||
|
||
* Sat Apr 29 2023 - Pavel Stehule <[email protected]> 2.4.0 | ||
- remove support for PostgreSQL 10 and 11 | ||
|
||
|
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 @@ | |
%global sname plpgsql_check | ||
|
||
Name: %{sname}_%{pgmajorversion} | ||
Version: 2.5.4 | ||
Version: 2.6.0 | ||
Release: 1%{?dist} | ||
Summary: Additional tools for plpgsql functions validation | ||
|
||
|
@@ -49,6 +49,9 @@ rm -rf %{buildroot} | |
%{pginstdir}/share/extension/*.control | ||
|
||
%changelog | ||
* Tue Oct 31 2023 - Pavel Stehule <[email protected]> 2.6.0 | ||
- simple constant tracing support | ||
|
||
* Sat Apr 29 2023 - Pavel Stehule <[email protected]> 2.4.0 | ||
- remove support for PostgreSQL 10 and 11 | ||
|
||
|
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 @@ | |
%global sname plpgsql_check | ||
|
||
Name: %{sname}_%{pgmajorversion} | ||
Version: 2.5.4 | ||
Version: 2.6.0 | ||
Release: 1%{?dist} | ||
Summary: Additional tools for plpgsql functions validation | ||
|
||
|
@@ -49,6 +49,9 @@ rm -rf %{buildroot} | |
%{pginstdir}/share/extension/*.control | ||
|
||
%changelog | ||
* Tue Oct 31 2023 - Pavel Stehule <[email protected]> 2.6.0 | ||
- simple constant tracing support | ||
|
||
* Sat Apr 29 2023 - Pavel Stehule <[email protected]> 2.4.0 | ||
- remove support for PostgreSQL 10 and 11 | ||
|
||
|
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
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