File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ PGFILEDESC = "pg_query_state - facility to track progress of plan execution"
1313EXTRA_CLEAN = ./isolation_output $(EXTENSION ) --$(EXTVERSION ) .sql \
1414 Dockerfile ./tests/*.pyc ./tmp_stress
1515
16- ISOLATION = corner_cases
1716ISOLATION_OPTS = --load-extension=pg_query_state
1817
1918TAP_TESTS = 1
Original file line number Diff line number Diff line change 1212
1313#include <postgres.h>
1414
15+ #if PG_VERSION_NUM >= 180000
16+ #include "commands/explain_state.h"
17+ #else
1518#include "commands/explain.h"
19+ #endif
1620#include "nodes/pg_list.h"
1721#include "storage/procarray.h"
1822#include "storage/shm_mq.h"
Original file line number Diff line number Diff line change 1111#include "pg_query_state.h"
1212
1313#include "commands/explain.h"
14+ #if PG_VERSION_NUM >= 180000
15+ #include "commands/explain_format.h"
16+ #endif
1417#include "miscadmin.h"
1518#if PG_VERSION_NUM >= 100000
1619#include "pgstat.h"
You can’t perform that action at this time.
0 commit comments