Skip to content

Commit

Permalink
PostgreSQL test suite: removed reference to generic SQLExecutor
Browse files Browse the repository at this point in the history
  • Loading branch information
frwilckens committed Dec 3, 2023
1 parent d8916ca commit 5e8bf15
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions Data/PostgreSQL/testsuite/src/SQLExecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,7 @@ class TypeHandler<Person>

SQLExecutor::SQLExecutor(const std::string& name, Poco::Data::Session* pSession):
CppUnit::TestCase(name),
_pSession(pSession),
_dataExecutor("Poco::Data SQL Executor", pSession, 0)
_pSession(pSession)
{
}

Expand Down
2 changes: 0 additions & 2 deletions Data/PostgreSQL/testsuite/src/SQLExecutor.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

#include "Poco/Data/PostgreSQL/PostgreSQL.h"
#include "Poco/Data/Session.h"
#include "Poco/Data/Test/SQLExecutor.h"

#include <libpq-fe.h>

Expand Down Expand Up @@ -108,7 +107,6 @@ class SQLExecutor: public CppUnit::TestCase
void setTransactionIsolation(Poco::Data::Session& session, Poco::UInt32 ti);

Poco::Data::Session* _pSession;
Poco::Data::Test::SQLExecutor _dataExecutor;
};


Expand Down

0 comments on commit 5e8bf15

Please sign in to comment.