Hello all. If I have: ```newSuspendedTransaction ...
# exposed
r
Hello all. If I have:
Copy code
newSuspendedTransaction {
  runCatching {
       insert_on_table_one
       insert_on_table_two 
       insert_on_table_three
       ...
       insert_on_table_N
    }.onFailure { /* some_code */ }
}
and for example, insert_on_table_three fails, will rollback occur on 2 and 1, or not?
e
That's the idea of a transaction, yes.