column, placeholder and column_value generator progress

This commit is contained in:
Sascha Kühl
2025-11-11 16:19:58 +01:00
parent 1d84b112f1
commit 9e76203bc9
11 changed files with 227 additions and 54 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ void session_query_builder::append_join(const sql::column &left, const sql::colu
using namespace matador::query;
entity_query_data_.joins.push_back({
{right.table_},
left == right
std::make_unique<binary_column_criteria>(left, binary_operator::EQUALS, right)
});
}
}