Skip to content

Commit 7af7933

Browse files
authored
Add PG17 support (#139)
1 parent 052b9bc commit 7af7933

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

.github/workflows/deb-packager.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
minor: 7
2424
- major: 16
2525
minor: 3
26+
- major: 17
27+
minor: 0
2628
platform:
2729
- type: amd64
2830
runs_on: ubuntu-latest

.github/workflows/pgrx_test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
minor: 7
2222
- major: 16
2323
minor: 3
24+
- major: 17
25+
minor: 0
2426
platform:
2527
- type: amd64
2628
runs_on: ubuntu-latest

pgvectorscale/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ pg13 = ["pgrx/pg13", "pgrx-tests/pg13"]
1616
pg14 = ["pgrx/pg14", "pgrx-tests/pg14"]
1717
pg15 = ["pgrx/pg15", "pgrx-tests/pg15"]
1818
pg16 = ["pgrx/pg16", "pgrx-tests/pg16"]
19+
pg17 = ["pgrx/pg17", "pgrx-tests/pg17"]
1920
pg_test = []
2021

2122
[dependencies]

pgvectorscale/src/access_method/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ pub extern "C" fn ambuild(
9090
result.into_pg()
9191
}
9292

93-
#[cfg(any(feature = "pg14", feature = "pg15", feature = "pg16"))]
93+
#[cfg(any(feature = "pg14", feature = "pg15", feature = "pg16", feature = "pg17"))]
9494
#[pg_guard]
9595
pub unsafe extern "C" fn aminsert(
9696
indexrel: pg_sys::Relation,

0 commit comments

Comments
 (0)