summaryrefslogtreecommitdiffstats
path: root/src/include/parser/parse_enr.h
blob: a3c05fd9f228b427a69b118c43898ce90ea4fab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*-------------------------------------------------------------------------
 *
 * parse_enr.h
 *		Internal definitions for parser
 *
 *
 * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 * src/include/parser/parse_enr.h
 *
 *-------------------------------------------------------------------------
 */
#ifndef PARSE_ENR_H
#define PARSE_ENR_H

#include "parser/parse_node.h"

extern bool name_matches_visible_ENR(ParseState *pstate, const char *refname);
extern EphemeralNamedRelationMetadata get_visible_ENR(ParseState *pstate, const char *refname);

#endif							/* PARSE_ENR_H */