joininfo.h

来自「关系型数据库 Postgresql 6.5.2」· C头文件 代码 · 共 25 行

H
25
字号
/*------------------------------------------------------------------------- * * joininfo.h *	  prototypes for joininfo.c. * * * Copyright (c) 1994, Regents of the University of California * * $Id: joininfo.h,v 1.12 1999/05/25 22:43:08 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef JOININFO_H#define JOININFO_H#include "nodes/nodes.h"#include "nodes/relation.h"#include "nodes/primnodes.h"extern JoinInfo *joininfo_member(List *join_relids, List *joininfo_list);extern JoinInfo *find_joininfo_node(RelOptInfo *this_rel, List *join_relids);extern Var *other_join_clause_var(Var *var, Expr *clause);#endif	 /* JOININFO_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?