diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-07-11 17:04:42 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-07-11 17:53:32 +0200 |
commit | b93b9e6d424faa7f6664a15b0507885f87745b01 (patch) | |
tree | 256fc0646016eac7c3a08d903a0c3ccaef07add3 /dbaccess | |
parent | 417925840e8697aaee8eb2f566d7e706bc8c379d (diff) |
microoptimisation
Change-Id: I977fbd8387b069574d9818923ada54392d39347a
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/SingleSelectQueryComposer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx index 24c207690a46..58a5564f88e3 100644 --- a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx +++ b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx @@ -695,7 +695,7 @@ void OSingleSelectQueryComposer::setSingleAdditiveClause( SQLPart _ePart, const clearColumns( ParameterColumns ); if ( _ePart == Order ) clearColumns( OrderColumns ); - if ( _ePart == Group ) + else if ( _ePart == Group ) clearColumns( GroupByColumns ); // also, since the "additive filter" change, we need to rebuild our "additive" statement |