| 264 | } |
| 265 | |
| 266 | ConnectionsPool* Manager::getConnPool(bool create) |
| 267 | { |
| 268 | if (!m_connPool && create) |
| 269 | m_connPool = FB_NEW_POOL(manager->getPool()) ConnectionsPool(manager->getPool()); |
| 270 | |
| 271 | return m_connPool; |
| 272 | } |
| 273 | |
| 274 | void Manager::jrdAttachmentEnd(thread_db* tdbb, Jrd::Attachment* att, bool forced) |
| 275 | { |
no test coverage detected