File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -206,6 +206,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
206
206
bindings_content. push_str ( "\n extern \" C\" {\n " ) ;
207
207
bindings_content. push_str ( " pub fn pg_query_scan(input: *const ::std::os::raw::c_char) -> PgQueryScanResult;\n " ) ;
208
208
bindings_content. push_str ( " pub fn pg_query_parse_protobuf(input: *const ::std::os::raw::c_char) -> PgQueryProtobufParseResult;\n " ) ;
209
+ bindings_content. push_str ( " pub fn pg_query_parse_plpgsql(input: *const ::std::os::raw::c_char) -> PgQueryPlpgsqlParseResult;\n " ) ;
209
210
bindings_content. push_str ( " pub fn pg_query_deparse_protobuf(protobuf: PgQueryProtobuf) -> PgQueryDeparseResult;\n " ) ;
210
211
bindings_content. push_str ( " pub fn pg_query_normalize(input: *const ::std::os::raw::c_char) -> PgQueryNormalizeResult;\n " ) ;
211
212
bindings_content. push_str ( " pub fn pg_query_fingerprint(input: *const ::std::os::raw::c_char) -> PgQueryFingerprintResult;\n " ) ;
@@ -214,6 +215,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
214
215
bindings_content
215
216
. push_str ( " pub fn pg_query_free_scan_result(result: PgQueryScanResult);\n " ) ;
216
217
bindings_content. push_str ( " pub fn pg_query_free_protobuf_parse_result(result: PgQueryProtobufParseResult);\n " ) ;
218
+ bindings_content. push_str ( " pub fn pg_query_free_plpgsql_parse_result(result: PgQueryPlpgsqlParseResult);\n " ) ;
217
219
bindings_content. push_str (
218
220
" pub fn pg_query_free_deparse_result(result: PgQueryDeparseResult);\n " ,
219
221
) ;
You can’t perform that action at this time.
0 commit comments