* Shadow transaction have no berkdb txn and executes (most of the time) * on replicants; * There is nothing to wait after. * I also prefer to pass the bdberr on the higher levels * */
| 485 | * |
| 486 | */ |
| 487 | int trans_commit_shadow(void *trans, int *bdberr) |
| 488 | { |
| 489 | int rc = 0; |
| 490 | ; |
| 491 | |
| 492 | *bdberr = 0; |
| 493 | rc = bdb_tran_commit(thedb->bdb_env, trans, bdberr); |
| 494 | |
| 495 | return rc; |
| 496 | } |
| 497 | |
| 498 | /** |
| 499 | * Shadow transaction have no berkdb txn and executes (most of the time) |
no test coverage detected