Skip to content
Snippets Groups Projects
Commit d617ac4a authored by Steven Murray's avatar Steven Murray
Browse files

Permanently removed the concept of rdbms::UnexpectedSemicolon. The rdbms...

Permanently removed the concept of rdbms::UnexpectedSemicolon.  The rdbms package should avoid trying to parse SQL, at least for now.
parent 6360bbaa
No related branches found
Tags v0.0-136
No related merge requests found
......@@ -29,8 +29,7 @@ set (RDBMS_LIB_SRC_FILES
rdbms.cpp
Rset.cpp
Stmt.cpp
StmtPool.cpp
UnexpectedSemicolon.cpp)
StmtPool.cpp)
add_library (ctardbms SHARED
${RDBMS_LIB_SRC_FILES})
......
......@@ -21,7 +21,6 @@
#include "rdbms/Conn.hpp"
#include "rdbms/ConnPool.hpp"
#include "rdbms/rdbms.hpp"
#include "rdbms/UnexpectedSemicolon.hpp"
namespace cta {
namespace rdbms {
......
......@@ -20,7 +20,6 @@
#include "rdbms/ConnPool.hpp"
#include "rdbms/ConnTest.hpp"
#include "rdbms/Login.hpp"
#include "rdbms/UnexpectedSemicolon.hpp"
#include <gtest/gtest.h>
......@@ -149,23 +148,6 @@ TEST_P(cta_rdbms_ConnTest, createTableInMemoryDatabase_executeNonQuery) {
}
}
TEST_P(cta_rdbms_ConnTest, DISABLED_createTableInMemoryDatabase_executeNonQuery_semicolon) {
using namespace cta::rdbms;
const std::string sql = "CREATE TABLE POOLED_STMT_TEST(ID INTEGER);";
{
const Login login(Login::DBTYPE_SQLITE, "", "", "file::memory:?cache=shared", "", 0);
const uint64_t maxNbConns = 1;
ConnPool connPool(login, maxNbConns);
auto conn = connPool.getConn();
ASSERT_TRUE(conn.getTableNames().empty());
ASSERT_THROW(conn.executeNonQuery(sql), UnexpectedSemicolon);
}
}
TEST_P(cta_rdbms_ConnTest, createSameTableInTwoSeparateInMemoryDatabases_executeNonQuery) {
using namespace cta::rdbms;
......
/*
* The CERN Tape Archive (CTA) project
* Copyright (C) 2015 CERN
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "UnexpectedSemicolon.hpp"
namespace cta {
namespace rdbms {
//------------------------------------------------------------------------------
// constructor
//------------------------------------------------------------------------------
UnexpectedSemicolon::UnexpectedSemicolon(const std::string &context, const bool embedBacktrace):
Exception(context, embedBacktrace) {
}
} // namespace rdbms
} // namespace cta
/*
* The CERN Tape Archive (CTA) project
* Copyright (C) 2015 CERN
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "common/exception/Exception.hpp"
namespace cta {
namespace rdbms {
/**
* Encountered an unexpected semicolon.
*/
class UnexpectedSemicolon: public exception::Exception {
public:
/**
* Constructor.
*
* @param context optional context string added to the message
* at initialisation time.
* @param embedBacktrace whether to embed a backtrace of where the
* exception was throw in the message
*/
UnexpectedSemicolon(const std::string &context = "", const bool embedBacktrace = true);
}; // class UnexpectedSemicolon
} // namespace rdbms
} // namespace cta
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment