| 213 | } |
| 214 | |
| 215 | database_ptr |
| 216 | database_i::create(const config& conf) |
| 217 | { |
| 218 | return database_ptr(new database(conf)); |
| 219 | } |
| 220 | |
| 221 | dbcontext::dbcontext(volatile database *d, bool for_write) |
| 222 | : dbref(d), for_write_flag(for_write), thd(0), lock(0), lock_failed(false), |
nothing calls this directly
no outgoing calls
no test coverage detected