Skip to content

Commit ec79217

Browse files
committed
Fix make check
1 parent be4352d commit ec79217

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
@@ -264,7 +264,7 @@ void *replace_fake(void *node)
264264
}
265265

266266
void _PG_init(void) {
267-
elog(WARNING, "SP_Plan init");
267+
/* elog(WARNING, "SR_Plan init"); */
268268
DefineCustomBoolVariable("sr_plan.write_mode",
269269
"Save all plans for all query.",
270270
NULL,
@@ -281,7 +281,7 @@ void _PG_init(void) {
281281
}
282282

283283
void _PG_fini(void) {
284-
elog(WARNING, "SP_Plan finit");
284+
/* elog(WARNING, "SR_Plan finit"); */
285285
planner_hook = NULL;
286286
post_parse_analyze_hook = NULL;
287287
}

0 commit comments

Comments
 (0)