Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 95246e9

Browse files
committed
Fix make check
1 parent c988035 commit 95246e9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PG_CONFIG = pg_config
1414
PGXS := $(shell $(PG_CONFIG) --pgxs)
1515
include $(PGXS)
1616
else
17-
subdir = contrib/intarray
17+
subdir = contrib/sr_plan
1818
top_builddir = ../..
1919
include $(top_builddir)/src/Makefile.global
2020
include $(top_srcdir)/contrib/contrib-global.mk
@@ -23,4 +23,4 @@ endif
2323

2424
genparser:
2525
# test -d sr_plan_env ||
26-
python gen_parser.py nodes.h `pg_config --includedir-server`
26+
python gen_parser.py nodes.h `pg_config --includedir-server`

sr_plan.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ void *replace_fake(void *node)
260260
}
261261

262262
void _PG_init(void) {
263-
elog(WARNING, "SP_Plan init");
263+
/* elog(WARNING, "SR_Plan init"); */
264264
DefineCustomBoolVariable("sr_plan.write_mode",
265265
"Save all plans for all query.",
266266
NULL,
@@ -277,7 +277,7 @@ void _PG_init(void) {
277277
}
278278

279279
void _PG_fini(void) {
280-
elog(WARNING, "SP_Plan finit");
280+
/* elog(WARNING, "SR_Plan finit"); */
281281
planner_hook = NULL;
282282
post_parse_analyze_hook = NULL;
283283
}

0 commit comments

Comments
 (0)