struct ovsdb_txn_row, hmap_node,
&txn_table->txn_rows)
{
+ if (txn_row->old) {
+ txn_row->old->txn_row = NULL;
+ }
if (txn_row->new) {
txn_row->new->txn_row = NULL;
}
2: i=2, j=3],
[transaction])
+OVSDB_CHECK_POSITIVE([deletes are aborted cleanly],
+ [[transact \
+ '["insert", "1", "2", "3"]' \
+ '["commit"]' \
+ '["print"]' \
+ '["delete", "1"]' \
+ '["abort"]' \
+ '["print"]' \
+ '["delete", "1"]' \
+ '["abort"]' \
+ '["print"]']],
+ [dnl
+insert 1 2 3:
+commit:
+print:
+1: i=2, j=3
+delete 1:
+abort:
+print:
+1: i=2, j=3
+delete 1:
+abort:
+print:
+1: i=2, j=3],
+ [transaction])
+