Skip to content

Commit

Permalink
new options for simplification of warnings setting - without_warnings…
Browse files Browse the repository at this point in the history
… and all_warnings
  • Loading branch information
okbob committed Nov 25, 2020
1 parent 39a9787 commit 2015dfa
Show file tree
Hide file tree
Showing 13 changed files with 69 additions and 248 deletions.
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "1.13.1",
"version": "1.15.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": "1.14.0"
"version": "1.15.0"
}
},
"prereqs": {
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

MODULE_big = plpgsql_check
OBJS = $(patsubst %.c,%.o,$(wildcard src/*.c))
DATA = plpgsql_check--1.14.sql
DATA = plpgsql_check--1.15.sql
EXTENSION = plpgsql_check

ifndef MAJORVERSION
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,10 @@ You can set level of warnings via function's parameters:

* `anycompatiblerangetype DEFAULT 'int4range'` - a real type used instead anycompatible range type

* `without_warnings DEFAULT false` - disable all warnings

* `all_warnings DEFAULT false` - enable all warnings

## Triggers

When you want to check any trigger, you have to enter a relation that will be
Expand Down
235 changes: 0 additions & 235 deletions plpgsql_check--1.14.sql

This file was deleted.

2 changes: 1 addition & 1 deletion plpgsql_check.control
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 = '1.14'
default_version = '1.15'
module_pathname = '$libdir/plpgsql_check'
relocatable = false
requires = 'plpgsql'
2 changes: 1 addition & 1 deletion postgresql10-plpgsql_check.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%global sname plpgsql_check

Name: %{sname}_%{pgmajorversion}
Version: 1.14.0
Version: 1.15.0
Release: 1%{?dist}
Summary: Additional tools for plpgsql functions validation

Expand Down
2 changes: 1 addition & 1 deletion postgresql11-plpgsql_check.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%global sname plpgsql_check

Name: %{sname}_%{pgmajorversion}
Version: 1.14.0
Version: 1.15.0
Release: 1%{?dist}
Summary: Additional tools for plpgsql functions validation

Expand Down
2 changes: 1 addition & 1 deletion postgresql12-plpgsql_check.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%global sname plpgsql_check

Name: %{sname}_%{pgmajorversion}
Version: 1.14.0
Version: 1.15.0
Release: 1%{?dist}
Summary: Additional tools for plpgsql functions validation

Expand Down
2 changes: 1 addition & 1 deletion postgresql13-plpgsql_check.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%global sname plpgsql_check

Name: %{sname}_%{pgmajorversion}
Version: 1.14.0
Version: 1.15.0
Release: 1%{?dist}
Summary: Additional tools for plpgsql functions validation

Expand Down
2 changes: 1 addition & 1 deletion postgresql14-plpgsql_check.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%global sname plpgsql_check

Name: %{sname}_%{pgmajorversion}
Version: 1.14.0
Version: 1.15.0
Release: 1%{?dist}
Summary: Additional tools for plpgsql functions validation

Expand Down
2 changes: 1 addition & 1 deletion postgresql95-plpgsql_check.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%global sname plpgsql_check

Name: %{sname}_%{pgmajorversion}
Version: 1.14.0
Version: 1.15.0
Release: 1%{?dist}
Summary: Additional tools for plpgsql functions validation

Expand Down
2 changes: 1 addition & 1 deletion postgresql96-plpgsql_check.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%global sname plpgsql_check

Name: %{sname}_%{pgmajorversion}
Version: 1.14.0
Version: 1.15.0
Release: 1%{?dist}
Summary: Additional tools for plpgsql functions validation

Expand Down
Loading

0 comments on commit 2015dfa

Please sign in to comment.