First custom query sent to MockDb

This commit is contained in:
rbock
2014-10-31 08:28:51 +01:00
parent 6684ac9ea8
commit 514ed4139c
4 changed files with 51 additions and 20 deletions
+3 -2
View File
@@ -37,8 +37,9 @@ int main()
test::TabFoo f;
test::TabBar t;
auto c = custom_query(select(all_of(t)).from(t), insert_into(t));
std::cerr << serialize(c, printer).str() << std::endl;
auto c = custom_query(select(all_of(t)).from(t));
//std::cerr << serialize(c, printer).str() << std::endl;
db(c);
return 0;
}