mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-02 03:00:38 -06:00
Fixed a bunch of missing initializations
This commit is contained in:
@@ -32,10 +32,10 @@
|
||||
int Union(int, char**)
|
||||
{
|
||||
MockDb db;
|
||||
MockDb::_serializer_context_t printer;
|
||||
MockDb::_serializer_context_t printer = {};
|
||||
|
||||
test::TabBar t;
|
||||
test::TabFoo f;
|
||||
const auto t = test::TabBar{};
|
||||
const auto f = test::TabFoo{};
|
||||
|
||||
db(select(t.alpha).from(t).where(true).union_distinct(select(f.epsilon.as(t.alpha)).from(f).where(true)));
|
||||
db(select(t.alpha).from(t).where(true).union_all(select(f.epsilon.as(t.alpha)).from(f).where(true)));
|
||||
|
||||
Reference in New Issue
Block a user