mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-02 03:00:38 -06:00
Removed extra_tables (use without_table_check) instead
This commit is contained in:
@@ -340,8 +340,8 @@ int SelectType(int, char* [])
|
||||
|
||||
// Test that select can be called with zero columns if it is used with dynamic columns.
|
||||
{
|
||||
auto s = dynamic_select(db).dynamic_columns().extra_tables(t);
|
||||
s.selected_columns.add(t.alpha);
|
||||
auto s = dynamic_select(db).dynamic_columns();
|
||||
s.selected_columns.add(without_table_check(t.alpha));
|
||||
serialize(s, printer).str();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user