Check NULL value of result.

This commit is contained in:
Nan Xiao 2017-04-05 17:56:17 +08:00
parent 137f273410
commit 745f4dd816
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,10 @@ int main(int argc, char *argv[]) {
hsql::SQLParserResult* result = hsql::SQLParser::parseSQLString(query);
// check whether the parsing was successful
if (!result) {
return -1;
}
if (result->isValid()) {
printf("Parsed successfully!\n");
printf("Number of statements: %lu\n", result->size());