summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/parse/sqlnode.cxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/connectivity/source/parse/sqlnode.cxx b/connectivity/source/parse/sqlnode.cxx
index 6ab4a2f0eddb..d2e88a92d6a4 100644
--- a/connectivity/source/parse/sqlnode.cxx
+++ b/connectivity/source/parse/sqlnode.cxx
@@ -2290,12 +2290,6 @@ void OSQLParseNode::showParseTree( OUStringBuffer& _inout_rBuffer, sal_uInt32 nL
_inout_rBuffer.append( '\n' );
break;
- case SQLNodeType::Comparison:
- _inout_rBuffer.appendAscii( "SQL_COMPARISON: " );
- _inout_rBuffer.append( m_aNodeValue );
- _inout_rBuffer.append( '\n' );
- break;
-
case SQLNodeType::Name:
_inout_rBuffer.appendAscii( "SQL_NAME: " );
_inout_rBuffer.append( '"' );
@@ -2330,12 +2324,6 @@ void OSQLParseNode::showParseTree( OUStringBuffer& _inout_rBuffer, sal_uInt32 nL
_inout_rBuffer.append( '\n' );
break;
- case SQLNodeType::AMMSC:
- _inout_rBuffer.appendAscii( "SQL_AMMSC: " );
- _inout_rBuffer.append( m_aNodeValue );
- _inout_rBuffer.append( '\n' );
- break;
-
case SQLNodeType::Equal:
case SQLNodeType::Less:
case SQLNodeType::Great:
@@ -2352,12 +2340,6 @@ void OSQLParseNode::showParseTree( OUStringBuffer& _inout_rBuffer, sal_uInt32 nL
_inout_rBuffer.append( '\n' );
break;
- case SQLNodeType::Date:
- _inout_rBuffer.appendAscii( "SQL_DATE: " );
- _inout_rBuffer.append( m_aNodeValue );
- _inout_rBuffer.append( '\n' );
- break;
-
case SQLNodeType::Concat:
_inout_rBuffer.appendAscii( "||" );
_inout_rBuffer.append( '\n' );
tdf#62475: partial handmade fixesAndrea Gelmini 2015-04-22Various #include <sal/log.hxx> fixupsStephan Bergmann 2015-04-15remove unnecessary use of void in function declarationsNoel Grandin 2015-04-01Replace remaining getCppuType et al with cppu::UnoTypeStephan Bergmann 2015-03-28Clean up C-style casts from pointers to voidStephan Bergmann 2015-03-15Typo: constarined->constrainedJulien Nabet 2015-02-18TyposJulien Nabet 2015-01-27Get rid of std::auto_ptr in stable URE interfaceStephan Bergmann 2015-01-16Fix getTypes() of OPropertySetHelper and derivedStephan Bergmann 2014-11-18cppuhelper: clean up public headers with include-what-you-useMichael Stahl 2014-09-17cppu and cppuhelper: loplugin: cstylecastNoel Grandin 2014-07-12Avoid possible memory leaks in case of exceptionsTakeshi Abe 2014-06-05cppuhelper: remove SAL_THROW macroNoel Grandin 2014-06-04cppuhelper: fix includesThomas Arnhold 2014-04-27automaticly -> automatically.Jan Holesovsky 2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann 2014-02-27Remove visual noise from cppuhelperAlexander Wilms 2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann