OSDN Git Service

Fix indent calculation
[pgstoreplans/pg_store_plans.git] / pgsp_explain.h
1 /*-------------------------------------------------------------------------
2  *
3  * pgsp_explain.h: extracted code from explain.c for explain of triggers.
4  *
5  * Copyright (c) 2008-2013, PostgreSQL Global Development Group
6  * Copyright (c) 2012-2015, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
7  *
8  * IDENTIFICATION
9  *        pg_store_plan/pgsp_explain.h
10  *
11  *-------------------------------------------------------------------------
12  */
13
14 void pgspExplainTriggers(ExplainState *es, QueryDesc *queryDesc);
15
16 /* ExplainInitState() is replaced with NewExlainState() in 9.5 */
17 #if PG_VERSION_NUM < 90500
18 ExplainState *NewExplainState(void);
19 #endif