mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-05 20:50:34 -06:00
Cleanup parens for EXISTS
This commit is contained in:
@@ -80,9 +80,8 @@ namespace sqlpp
|
||||
template <typename Context, typename Select>
|
||||
Context& serialize(const exists_t<Select>& t, Context& context)
|
||||
{
|
||||
context << "EXISTS(";
|
||||
serialize(t._select, context);
|
||||
context << ")";
|
||||
context << "EXISTS";
|
||||
serialize_operand(t._select, context);
|
||||
return context;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user