diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-04-10 16:05:00 +0000 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-04-18 10:02:38 +0200 |
commit | 81b9821b65fb5721a2ca093fcec6a53fa01b9ba7 (patch) | |
tree | ab455d4993eb5270ed611139c8f41ec7aa6016d0 /connectivity | |
parent | 4060a94f6434b05a84d015d84e3b5f0315b44133 (diff) |
Fix typo
Change-Id: Ief0343a128ae45ee62f7965a6ea77b2dcbd0ae49
Reviewed-on: https://gerrit.libreoffice.org/70911
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/parse/sqliterator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/parse/sqliterator.cxx b/connectivity/source/parse/sqliterator.cxx index eaec3f9ef6b1..3be9ec8b570e 100644 --- a/connectivity/source/parse/sqliterator.cxx +++ b/connectivity/source/parse/sqliterator.cxx @@ -574,7 +574,7 @@ const OSQLParseNode* OSQLParseTreeIterator::getTableNode( OSQLTables& _rTables, if ( SQL_ISRULE( pQueryExpression, select_statement ) ) { getSelect_statement( *m_pImpl->m_pSubTables, pQueryExpression ); - // TODO: now, we need to setup a OSQLTable from pQueryExpression in some way + // TODO: now, we need to setup an OSQLTable from pQueryExpression in some way // and stick it in _rTables[rTableRange]. Probably fake it by // setting up a full OSQLParseTreeIterator on pQueryExpression // and using its m_aSelectColumns @@ -720,7 +720,7 @@ namespace else _out_rColumnName = _pColumnRef->getChild(0)->getTokenValue(); - // look up the column in the select column, to find an possible alias + // look up the column in the select column, to find a possible alias if ( _pSelectColumns ) { for (const Reference< XPropertySet >& xColumn : _pSelectColumns->get()) @@ -1837,7 +1837,7 @@ const OSQLParseNode* OSQLParseTreeIterator::getOrderTree() const OSL_ENSURE(pTableExp->count() == TABLE_EXPRESSION_CHILD_COUNT,"OSQLParseTreeIterator: error in parse tree!"); pOrderClause = pTableExp->getChild(ORDER_BY_CHILD_POS); - // If it is a order_by, it must not be empty + // If it is an order_by, it must not be empty if(pOrderClause->count() != 3) pOrderClause = nullptr; return pOrderClause; |