File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
all : walbouncer
2
2
3
3
# Check for PostgrSQL 9.5 through 11
4
- ifeq ($(shell pg_config --version | grep -E "PostgreSQL 9.[56]|10|11|12|13") ,)
4
+ ifeq ($(shell pg_config --version | grep -E "PostgreSQL 9.[56]|10|11|12|13|14 ") ,)
5
5
$(error PostgreSQL version 9.5 through 11 required, pg_config provides $(shell pg_config --version))
6
6
endif
7
7
@@ -26,7 +26,7 @@ parser/repl_scanner.c : parser/repl_scanner.l
26
26
flex -o $@ $<
27
27
28
28
parser/repl_gram.c : parser/repl_gram.y parser/repl_scanner.c
29
- bison -o $@ $<
29
+ bison -Wno-deprecated - o $@ $<
30
30
31
31
test : all
32
32
cd ../tests; ./run_demo.sh
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ typedef struct BkpBlock
67
67
* Each page of XLOG file has a header like this:
68
68
*/
69
69
#define XLOG_PAGE_MAGIC_MIN 0xD087 /* in WB case it's OK to use a range of versions as we're only interested in fixing the RelFileNode location */
70
- #define XLOG_PAGE_MAGIC_MAX 0xD106
70
+ #define XLOG_PAGE_MAGIC_MAX 0xD10E
71
71
72
72
typedef struct XLogPageHeaderData
73
73
{
You can’t perform that action at this time.
0 commit comments