| 4415 | } |
| 4416 | |
| 4417 | IMessageMetadata* YStatement::getInputMetadata(CheckStatusWrapper* status) |
| 4418 | { |
| 4419 | try |
| 4420 | { |
| 4421 | YEntry<YStatement> entry(status, this); |
| 4422 | |
| 4423 | return input.get(entry.next(), this); |
| 4424 | } |
| 4425 | catch (const Exception& e) |
| 4426 | { |
| 4427 | e.stuffException(status); |
| 4428 | } |
| 4429 | |
| 4430 | return NULL; |
| 4431 | } |
| 4432 | |
| 4433 | IMessageMetadata* YStatement::getOutputMetadata(CheckStatusWrapper* status) |
| 4434 | { |
no test coverage detected