mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-05-12 14:18:55 -05:00
Added serialization to MockDb run methods
Implicitly increased number of serialization tests. Fixed serialization for logical_not
This commit is contained in:
@@ -165,7 +165,7 @@ namespace sqlpp
|
||||
context << "(";
|
||||
if (trivial_value_is_null_t<Rhs>::value)
|
||||
{
|
||||
serialize(t._lhs, context);
|
||||
serialize(t._rhs, context);
|
||||
context << " IS NULL ";
|
||||
}
|
||||
else
|
||||
@@ -174,6 +174,8 @@ namespace sqlpp
|
||||
serialize(t._rhs, context);
|
||||
}
|
||||
context << ")";
|
||||
|
||||
return context;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user