Skip to content

Commit 77aa9fd

Browse files
committed
remove support for Postgres 12 and 13
1 parent dcf70a9 commit 77aa9fd

34 files changed

+35
-10720
lines changed

META.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
"name": "plpgsql_check",
33
"abstract": "Additional tools for plpgsql functions validation",
44
"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",
5-
"version": "2.7.15",
5+
"version": "2.8.0",
66
"maintainer": "Pavel STEHULE <pavel.stehule@gmail.com>",
77
"license": "bsd",
88
"provides": {
99
"plpgsql_check": {
1010
"abstract": "Additional tools for plpgsql functions validation",
1111
"file": "sql/plpgsql_check_active.sql",
1212
"docfile": "README.md",
13-
"version": "2.7.15"
13+
"version": "2.8.0"
1414
}
1515
},
1616
"prereqs": {
1717
"runtime": {
1818
"requires": {
19-
"PostgreSQL": "12.0.0",
19+
"PostgreSQL": "14.0.0",
2020
"plpgsql": 0
2121
}
2222
}

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
MODULE_big = plpgsql_check
44
OBJS = $(patsubst %.c,%.o,$(wildcard src/*.c))
5-
DATA = plpgsql_check--2.7.sql
5+
DATA = plpgsql_check--2.8.sql
66
EXTENSION = plpgsql_check
77

88
ifndef MAJORVERSION

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ google group.
3333

3434
I invite any ideas, patches, bugreports.
3535

36-
PostgreSQL PostgreSQL 12 - 17 are supported.
36+
PostgreSQL PostgreSQL 14 - 18 are supported.
3737

3838
The SQL statements inside PL/pgSQL functions are checked by the validator for semantic errors. These errors
3939
can be found by calling the plpgsql_check_function:

expected/README

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
plpgsql_check_passive.out PostgreSQL 14, 15, 16
2-
plpgsql_check_passive_1.out PostgreSQL 12, 13
32
plpgsql_check_passive_2.out PostgreSQL 18
4-
plpgsql_check_active_1.out PostgreSQL 12, 13
53
plpgsql_check_active_2.out PostgreSQL 14, 15, 16
64
plpgsql_check_active_3.out PostgreSQL 18
75
plpgsql_check_active.out PostgreSQL 17

expected/plpgsql_check_active-12.out

Whitespace-only changes.

expected/plpgsql_check_active-13.out

Whitespace-only changes.

0 commit comments

Comments
 (0)