connectivity/source/drivers/firebird/View.cxx | 5 ----- 1 file changed, 5 deletions(-)
New commits: commit 924791c51b27226e34fd1e0a32cc7d3d66683d0b Author: Julien Nabet <[email protected]> AuthorDate: Sun Mar 13 19:29:13 2022 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Sun Mar 13 20:47:57 2022 +0100 Remove forgotten remnant test code Change-Id: Iffa86449fc2e4946821afea07e22deb355c7fbf4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131507 Reviewed-by: Julien Nabet <[email protected]> Tested-by: Jenkins diff --git a/connectivity/source/drivers/firebird/View.cxx b/connectivity/source/drivers/firebird/View.cxx index 506cafb40463..6dcbf6bce2b2 100644 --- a/connectivity/source/drivers/firebird/View.cxx +++ b/connectivity/source/drivers/firebird/View.cxx @@ -7,7 +7,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "View.hxx" -#include <iostream> #include <propertyids.hxx> @@ -68,10 +67,6 @@ OUString View::impl_getCommand() const { OUString aCommand("SELECT RDB$VIEW_SOURCE FROM RDB$RELATIONS WHERE RDB$RELATION_NAME = '" + m_Name + "'"); - std::cerr << "TODO aCommand=" << aCommand << "\n"; - // OUString aCommand("SELECT VIEW_DEFINITION FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_SCHEMA = '" - // + m_SchemaName + "' AND TABLE_NAME = '" + m_Name + "'"); - //::utl::SharedUNOComponent< XStatement > xStatement; xStatement.set( m_xConnection->createStatement(), UNO_QUERY_THROW ); css::uno::Reference<css::sdbc::XStatement> statement = m_xConnection->createStatement(); css::uno::Reference<css::sdbc::XResultSet> xResult = statement->executeQuery(aCommand);
