From 530b48d539fad9672731ffef7696b969333be10c Mon Sep 17 00:00:00 2001 From: mrks Date: Thu, 4 Jun 2020 11:22:56 +0200 Subject: [PATCH] Fix kStmtSelect typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a1fab7..9af5aba 100644 --- a/README.md +++ b/README.md @@ -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) { const hsql::SQLStatement* statement = result.getStatement(0); - if (statement->isType(hsql::kSelectStmt)) { + if (statement->isType(hsql::kStmtSelect)) { const auto* select = static_cast statement; /* ... */ }