| 84 | } |
| 85 | |
| 86 | struct database : public database_i, private noncopyable { |
| 87 | database(const config& c); |
| 88 | virtual ~database(); |
| 89 | virtual dbcontext_ptr create_context(bool for_write) volatile; |
| 90 | virtual void stop() volatile; |
| 91 | virtual const config& get_conf() const volatile; |
| 92 | public: |
| 93 | int child_running; |
| 94 | private: |
| 95 | config conf; |
| 96 | }; |
| 97 | |
| 98 | struct tablevec_entry { |
| 99 | TABLE *table; |
nothing calls this directly
no outgoing calls
no test coverage detected