关系型数据库 Postgresql 6.5.2
源代码在线查看: explain.h
/*------------------------------------------------------------------------- * * explain.h * prototypes for explain.c * * Copyright (c) 1994-5, Regents of the University of California * * $Id: explain.h,v 1.8.2.1 1999/07/30 18:52:56 scrappy Exp $ * *------------------------------------------------------------------------- */ #ifndef EXPLAIN_H #define EXPLAIN_H #include "nodes/parsenodes.h" #include "tcop/dest.h" extern void ExplainQuery(Query *query, bool verbose, CommandDest dest); #endif /* EXPLAIN_H */