| 6094 | } |
| 6095 | |
| 6096 | void YAttachment::dropDatabase(CheckStatusWrapper* status) |
| 6097 | { |
| 6098 | try |
| 6099 | { |
| 6100 | YEntry<YAttachment> entry(status, this); |
| 6101 | |
| 6102 | done(status, entry, this, [&]{entry.next()->dropDatabase(status);}, [&]{entry.next()->deprecatedDropDatabase(status);}); |
| 6103 | } |
| 6104 | catch (const Exception& e) |
| 6105 | { |
| 6106 | e.stuffException(status); |
| 6107 | } |
| 6108 | } |
| 6109 | |
| 6110 | void YAttachment::deprecatedDropDatabase(CheckStatusWrapper* status) |
| 6111 | { |
no test coverage detected