mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-04 00:06:46 -05:00
Fix indentation
This commit is contained in:
parent
45ae4c681d
commit
7f7bbae1d0
@ -27,7 +27,7 @@
|
||||
|
||||
#include "odbc/PreparedStatement.h"
|
||||
|
||||
QgsHanaProviderResultIterator::QgsHanaProviderResultIterator( QgsHanaResultSetRef&& resultSet )
|
||||
QgsHanaProviderResultIterator::QgsHanaProviderResultIterator( QgsHanaResultSetRef &&resultSet )
|
||||
: mResultSet( std::move( resultSet ) )
|
||||
, mNumColumns( mResultSet->getMetadata().getColumnCount() )
|
||||
, mNextRow( mResultSet->next() )
|
||||
|
||||
@ -23,13 +23,13 @@
|
||||
|
||||
struct QgsHanaEmptyProviderResultIterator: public QgsAbstractDatabaseProviderConnection::QueryResult::QueryResultIterator
|
||||
{
|
||||
QVariantList nextRow() override { return QVariantList(); }
|
||||
bool hasNextRow() const override { return false; }
|
||||
QVariantList nextRow() override { return QVariantList(); }
|
||||
bool hasNextRow() const override { return false; }
|
||||
};
|
||||
|
||||
struct QgsHanaProviderResultIterator: public QgsAbstractDatabaseProviderConnection::QueryResult::QueryResultIterator
|
||||
{
|
||||
QgsHanaProviderResultIterator( QgsHanaResultSetRef&& resultSet );
|
||||
QgsHanaProviderResultIterator( QgsHanaResultSetRef &&resultSet );
|
||||
QVariantList nextRow() override;
|
||||
bool hasNextRow() const override { return mNextRow; }
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user