pg_parse 0.12.0

PostgreSQL parser that uses the actual PostgreSQL server source to parse SQL queries and return the internal PostgreSQL parse tree.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#ifndef PG_QUERY_READFUNCS_H
#define PG_QUERY_READFUNCS_H

#include "pg_query.h"

#include "postgres.h"
#include "nodes/pg_list.h"

List * pg_query_protobuf_to_nodes(PgQueryProtobuf protobuf);

#endif