Merge branch 'master' into build-install

This commit is contained in:
Pedro Flemming 2017-04-07 15:36:20 +02:00 committed by GitHub
commit b63f1bed0e
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());