mirror of https://github.com/citusdata/citus.git
Remove unused includes and obsolete type alias for OpBtreeInterpretation in planner files
parent
1d32b381ec
commit
9057c8778b
|
@ -1 +0,0 @@
|
||||||
Subproject commit 3376bd6845f0614908ed304f5033bd644c82d3bf
|
|
|
@ -18,7 +18,6 @@
|
||||||
|
|
||||||
#include "nodes/execnodes.h" /* for ExprState, ExprContext, etc. */
|
#include "nodes/execnodes.h" /* for ExprState, ExprContext, etc. */
|
||||||
#include "executor/executor.h" /* for ExecInitExprWithParams(), ExecEvalExpr() */
|
#include "executor/executor.h" /* for ExecInitExprWithParams(), ExecEvalExpr() */
|
||||||
#include "commands/explain_format.h" /* for ExplainPropertyInteger() */
|
|
||||||
#include "access/amapi.h"
|
#include "access/amapi.h"
|
||||||
#include "access/skey.h"
|
#include "access/skey.h"
|
||||||
#include "catalog/pg_am.h"
|
#include "catalog/pg_am.h"
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
#include "commands/createas.h"
|
#include "commands/createas.h"
|
||||||
#include "commands/dbcommands.h"
|
#include "commands/dbcommands.h"
|
||||||
#include "commands/explain.h"
|
#include "commands/explain.h"
|
||||||
#include "commands/explain_format.h"
|
|
||||||
#include "commands/tablecmds.h"
|
#include "commands/tablecmds.h"
|
||||||
#include "executor/tstoreReceiver.h"
|
#include "executor/tstoreReceiver.h"
|
||||||
#include "lib/stringinfo.h"
|
#include "lib/stringinfo.h"
|
||||||
|
@ -43,10 +42,6 @@
|
||||||
#include "utils/json.h"
|
#include "utils/json.h"
|
||||||
#include "utils/lsyscache.h"
|
#include "utils/lsyscache.h"
|
||||||
#include "utils/snapmgr.h"
|
#include "utils/snapmgr.h"
|
||||||
#if PG_VERSION_NUM >= PG_VERSION_18
|
|
||||||
# include "commands/explain_dr.h" /* CreateExplainSerializeDestReceiver() */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#include "pg_version_constants.h"
|
#include "pg_version_constants.h"
|
||||||
#if PG_VERSION_NUM >= PG_VERSION_18
|
#if PG_VERSION_NUM >= PG_VERSION_18
|
||||||
|
|
|
@ -34,14 +34,6 @@
|
||||||
#include "utils/relcache.h"
|
#include "utils/relcache.h"
|
||||||
#include "utils/syscache.h"
|
#include "utils/syscache.h"
|
||||||
|
|
||||||
/*
|
|
||||||
* PG 18 renamed OpBtreeInterpretation to the more generic OpIndexInterpretation,
|
|
||||||
* so make the old name an alias.
|
|
||||||
*/
|
|
||||||
#if PG_VERSION_NUM >= PG_VERSION_18
|
|
||||||
typedef OpIndexInterpretation OpBtreeInterpretation;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "pg_version_constants.h"
|
#include "pg_version_constants.h"
|
||||||
#if PG_VERSION_NUM >= PG_VERSION_18
|
#if PG_VERSION_NUM >= PG_VERSION_18
|
||||||
typedef OpIndexInterpretation OpBtreeInterpretation;
|
typedef OpIndexInterpretation OpBtreeInterpretation;
|
||||||
|
|
|
@ -84,14 +84,6 @@
|
||||||
#include "utils/memutils.h"
|
#include "utils/memutils.h"
|
||||||
#include "utils/ruleutils.h"
|
#include "utils/ruleutils.h"
|
||||||
|
|
||||||
/*
|
|
||||||
* PG 18 renamed OpBtreeInterpretation to the more generic OpIndexInterpretation,
|
|
||||||
* so make the old name an alias.
|
|
||||||
*/
|
|
||||||
#if PG_VERSION_NUM >= PG_VERSION_18
|
|
||||||
typedef OpIndexInterpretation OpBtreeInterpretation;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "pg_version_constants.h"
|
#include "pg_version_constants.h"
|
||||||
#if PG_VERSION_NUM >= PG_VERSION_18
|
#if PG_VERSION_NUM >= PG_VERSION_18
|
||||||
typedef OpIndexInterpretation OpBtreeInterpretation;
|
typedef OpIndexInterpretation OpBtreeInterpretation;
|
||||||
|
|
Loading…
Reference in New Issue