-
At the moment, it is possible to create an UPDATE statement where the SET field is empty i.e.
I'd like to be able to at least inspect the ActiveModel to know if all columns are unmodified and therefore not call |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
Hey @nickb937, sorry for the late reply. There is a For example, you can check if assert!(arow.id.is_set()) |
Beta Was this translation helpful? Give feedback.
-
The struct Table {
A: i32,
B: i32
} At time struct Table {
A: i32,
B: i32,
C: i32
} Consider if the At development time At time |
Beta Was this translation helpful? Give feedback.
-
Ah thanks. I hadn't noticed there was a iter() on the Column. |
Beta Was this translation helpful? Give feedback.
Ah thanks. I hadn't noticed there was a iter() on the Column.