Skip to content

Commit 1fad531

Browse files
authored
Drop support for PG11 in pg_tle 1.5.0. (#292)
1 parent 6c3680c commit 1fad531

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/code_coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
os: [ubuntu-latest]
14-
version: [master, REL_17_STABLE, REL_16_STABLE, REL_15_STABLE, REL_14_STABLE, REL_13_STABLE, REL_12_STABLE, REL_11_STABLE]
14+
version: [master, REL_17_STABLE, REL_16_STABLE, REL_15_STABLE, REL_14_STABLE, REL_13_STABLE, REL_12_STABLE]
1515

1616
runs-on: ${{ matrix.os }}
1717
timeout-minutes: 120

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest]
23-
version: [master, REL_17_STABLE, REL_16_STABLE, REL_15_STABLE, REL_14_STABLE, REL_13_STABLE, REL_12_STABLE, REL_11_STABLE]
23+
version: [master, REL_17_STABLE, REL_16_STABLE, REL_15_STABLE, REL_14_STABLE, REL_13_STABLE, REL_12_STABLE]
2424

2525
runs-on: ${{ matrix.os }}
2626
timeout-minutes: 120

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ There are examples for writing TLEs in several languages, including:
3333
* [JavaScript](./docs/07_plv8_examples.md)
3434
* [Perl](./docs/08_plperl_examples.md)
3535

36+
## Supported PostgreSQL versions
37+
38+
`pg_tle` 1.5.0 supports PostgreSQL major versions 12 to 17.
39+
40+
`pg_tle` 1.4.1 supports PostgreSQL major versions 11 to 17.
41+
3642
## Help & feedback
3743

3844
Have a question? Have a feature request? We recommend trying the following things (in this order):

include/compatibility.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@
101101

102102
#endif /* 10+ */
103103

104-
#if !defined(PG_VERSION_NUM) || PG_VERSION_NUM < 100000
105-
#error "This extension only builds with PostgreSQL 9.4 or later"
104+
#if !defined(PG_VERSION_NUM) || PG_VERSION_NUM < 120000
105+
#error "This extension only builds with PostgreSQL 12 or later"
106106
#endif
107107

108108
/* additional compatibility hacks */

0 commit comments

Comments
 (0)