Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6bc134f

Browse files
committed
Added pg_amcheck since PG14
1 parent dcc2049 commit 6bc134f

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

build/helpers/postgres_nsis_installer.cmd

+6
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ rem Genarate file lists
104104
rem Remove old filelists first
105105
rm -f *_list.nsi
106106
rem tune pattern lists to major version and product
107+
108+
IF %PG_MAJOR_VERSION% LEQ 13 (
109+
sed "s/pg_amcheck//" client.files > client-14.files
110+
mv client-14.files client.files
111+
)
112+
107113
IF "%PG_MAJOR_VERSION%" == "9.6" (
108114
sed "s/wal/xlog/" server.files > allserver.files
109115
sed "s/wal/xlog/" client.files > allclient.files

nsis/client.files

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
./bin/createuser.*
55
./bin/dropdb.*
66
./bin/dropuser.*
7+
./bin/pg_amcheck.*
78
./bin/pg_basebackup.*
89
./bin/pgbench.*
910
./bin/pg_dump.*

nsis/unneeded.files

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
./bin/libpq_pipeline.exe
12
./bin/pg_regress*.exe
23
./bin/pg_isolation_regress.exe
34
./bin/isolationtester.exe

0 commit comments

Comments
 (0)