Skip to content

Commit 0ef9416

Browse files
committed
Drop PostgreSQL version 12 support
1 parent e6390fc commit 0ef9416

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/installcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
strategy:
1414
matrix:
1515
pgversion:
16+
- 17
1617
- 16
1718
- 15
1819
- 14
1920
- 13
20-
- 12
2121

2222
env:
2323
PGVERSION: ${{ matrix.pgversion }}

postgresql_extension_template.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
PG_MODULE_MAGIC;
55

66
/* Abost compilation against unsupported versions. */
7-
#if PG_VERSION_NUM < 120000
7+
#if PG_VERSION_NUM < 130000
88
#error "Unsupported PostgreSQL Version"
99
#endif
1010

0 commit comments

Comments
 (0)