File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ void MariadbFilteringLazy::appendOrderby(std::string &retStr) const
79
79
return ;
80
80
}
81
81
82
- retStr.append (" ORDER BY " );
82
+ retStr.append (" ORDER BY " );
83
83
84
84
std::visit ([&retStr, this ](auto && arg) {
85
85
using T = std::decay_t <decltype (arg)>;
@@ -101,7 +101,7 @@ void MariadbFilteringLazy::appendLimit(std::string &retStr) const
101
101
return ;
102
102
}
103
103
104
- retStr.append (" LIMIT " );
104
+ retStr.append (" LIMIT " );
105
105
106
106
std::visit ([&retStr, this ](auto && arg) {
107
107
using T = std::decay_t <decltype (arg)>;
@@ -123,7 +123,7 @@ void MariadbFilteringLazy::appendGroup(std::string &retStr) const
123
123
return ;
124
124
}
125
125
126
- retStr.append (" GROUP BY " );
126
+ retStr.append (" GROUP BY " );
127
127
128
128
std::visit ([&retStr, this ](auto && arg) {
129
129
using T = std::decay_t <decltype (arg)>;
@@ -145,7 +145,7 @@ void MariadbFilteringLazy::appendHaving(std::string &retStr) const
145
145
return ;
146
146
}
147
147
148
- retStr.append (" HAVING " );
148
+ retStr.append (" HAVING " );
149
149
150
150
for (const auto &havingItem : mHavingConditions )
151
151
{
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ void PostgreFilteringLazy::appendOrderby(std::string &retStr) const
79
79
return ;
80
80
}
81
81
82
- retStr.append (" ORDER BY " );
82
+ retStr.append (" ORDER BY " );
83
83
84
84
std::visit ([&retStr, this ](auto && arg) {
85
85
using T = std::decay_t <decltype (arg)>;
@@ -101,7 +101,7 @@ void PostgreFilteringLazy::appendLimit(std::string &retStr) const
101
101
return ;
102
102
}
103
103
104
- retStr.append (" LIMIT " );
104
+ retStr.append (" LIMIT " );
105
105
106
106
std::visit ([&retStr, this ](auto && arg) {
107
107
using T = std::decay_t <decltype (arg)>;
@@ -123,7 +123,7 @@ void PostgreFilteringLazy::appendGroup(std::string &retStr) const
123
123
return ;
124
124
}
125
125
126
- retStr.append (" GROUP BY " );
126
+ retStr.append (" GROUP BY " );
127
127
128
128
std::visit ([&retStr, this ](auto && arg) {
129
129
using T = std::decay_t <decltype (arg)>;
@@ -145,7 +145,7 @@ void PostgreFilteringLazy::appendHaving(std::string &retStr) const
145
145
return ;
146
146
}
147
147
148
- retStr.append (" HAVING " );
148
+ retStr.append (" HAVING " );
149
149
150
150
for (const auto &havingItem : mHavingConditions )
151
151
{
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ void SqliteFilteringLazy::appendOrderby(std::string &retStr) const
79
79
return ;
80
80
}
81
81
82
- retStr.append (" ORDER BY " );
82
+ retStr.append (" ORDER BY " );
83
83
84
84
std::visit ([&retStr, this ](auto && arg) {
85
85
using T = std::decay_t <decltype (arg)>;
@@ -101,7 +101,7 @@ void SqliteFilteringLazy::appendLimit(std::string &retStr) const
101
101
return ;
102
102
}
103
103
104
- retStr.append (" LIMIT " );
104
+ retStr.append (" LIMIT " );
105
105
106
106
std::visit ([&retStr, this ](auto && arg) {
107
107
using T = std::decay_t <decltype (arg)>;
@@ -123,7 +123,7 @@ void SqliteFilteringLazy::appendGroup(std::string &retStr) const
123
123
return ;
124
124
}
125
125
126
- retStr.append (" GROUP BY " );
126
+ retStr.append (" GROUP BY " );
127
127
128
128
std::visit ([&retStr, this ](auto && arg) {
129
129
using T = std::decay_t <decltype (arg)>;
@@ -145,7 +145,7 @@ void SqliteFilteringLazy::appendHaving(std::string &retStr) const
145
145
return ;
146
146
}
147
147
148
- retStr.append (" HAVING " );
148
+ retStr.append (" HAVING " );
149
149
150
150
for (const auto &havingItem : mHavingConditions )
151
151
{
You can’t perform that action at this time.
0 commit comments