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
#include <pg_query.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>

#include "parse_tests.c"

int main() {
  size_t i;
  bool ret_code = 0;

  for (i = 0; i < testsLength; i += 2) {
    PgQueryProtobufParseResult result = pg_query_parse_protobuf(tests[i]);

    if (result.error) {
      ret_code = -1;
      printf("%s\n", result.error->message);
    } else {
      printf(".");
    }
    //} else if (strcmp(result.parse_tree, tests[i + 1]) == 0) {
    //  printf(".");
    //} else {
    //  ret_code = -1;
    //  printf("INVALID result for \"%s\"\nexpected: %s\nactual: %s\n", tests[i], tests[i + 1], result.parse_tree);
    //}

    pg_query_free_protobuf_parse_result(result);
  }

  printf("\n");

  pg_query_exit();

  return ret_code;
}