Skip to content

Commit

Permalink
Drop PostgreSQL version 12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
kovmir committed Sep 24, 2024
1 parent e6390fc commit 0ef9416
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/installcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
strategy:
matrix:
pgversion:
- 17
- 16
- 15
- 14
- 13
- 12

env:
PGVERSION: ${{ matrix.pgversion }}
Expand Down
2 changes: 1 addition & 1 deletion postgresql_extension_template.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
PG_MODULE_MAGIC;

/* Abost compilation against unsupported versions. */
#if PG_VERSION_NUM < 120000
#if PG_VERSION_NUM < 130000
#error "Unsupported PostgreSQL Version"
#endif

Expand Down

0 comments on commit 0ef9416

Please sign in to comment.