column generator progress

This commit is contained in:
2025-11-12 22:18:56 +01:00
parent 1c5b2b21b0
commit 0d08ad4179
9 changed files with 202 additions and 65 deletions
+1 -1
View File
@@ -248,7 +248,7 @@ utils::result<object::object_ptr<Type>, utils::error> session::update( const obj
const auto col = sql::column(info.value().get().definition().primary_key()->name());
auto res = matador::query::query::update(info->get().name())
.set(generator::placeholders<Type>())
.set(generator::column_value_pairs<Type>())
.where(col == _)
.prepare(*this);
if (!res) {