fix: pass object to pk_accessor

This commit is contained in:
Sascha Kühl 2026-04-10 16:33:06 +02:00
parent f62f3e626b
commit 53ac6810d9
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public:
// Extract FK value from the foreign object // Extract FK value from the foreign object
insert_step rel_step{}; insert_step rel_step{};
const auto pk = rel_step.pk_accessor.get(obj); const auto pk = rel_step.pk_accessor.get(*obj);
if (pk.is_valid()) { if (pk.is_valid()) {
continue; continue;
} }