| 102 | using namespace hsql; |
| 103 | |
| 104 | int yyerror(YYLTYPE * llocp, SQLParserResult * result, yyscan_t scanner, const char* msg) { |
| 105 | result->setIsValid(false); |
| 106 | result->setErrorDetails(strdup(msg), llocp->first_line, llocp->first_column); |
| 107 | return 0; |
| 108 | } |
| 109 | // clang-format off |
| 110 | |
| 111 | #line 112 "bison_parser.cpp" |
no test coverage detected