blob: b88d80f346f8b78e24499d8c148cf2f60ce74e98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*-------------------------------------------------------------------------
*
* analyze.h
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: analyze.h,v 1.2 1997/11/26 01:13:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef ANALYZE_H
#define ANALYZE_H
#include <parser/parse_node.h>
extern QueryTreeList *parse_analyze(List *pl);
#endif /* ANALYZE_H */
|