Fix kStmtSelect typo

This commit is contained in:
mrks 2020-06-04 11:22:56 +02:00 committed by GitHub
parent a18f03e0bc
commit 530b48d539
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ To use the SQL parser in your own projects you simply have to follow these few s
if (result.isValid() && result.size() > 0) { if (result.isValid() && result.size() > 0) {
const hsql::SQLStatement* statement = result.getStatement(0); const hsql::SQLStatement* statement = result.getStatement(0);
if (statement->isType(hsql::kSelectStmt)) { if (statement->isType(hsql::kStmtSelect)) {
const auto* select = static_cast<const hsql::SelectStatement*> statement; const auto* select = static_cast<const hsql::SelectStatement*> statement;
/* ... */ /* ... */
} }