| 4352 | } |
| 4353 | |
| 4354 | unsigned YStatement::getFlags(CheckStatusWrapper* status) |
| 4355 | { |
| 4356 | try |
| 4357 | { |
| 4358 | YEntry<YStatement> entry(status, this); |
| 4359 | |
| 4360 | return entry.next()->getFlags(status); |
| 4361 | } |
| 4362 | catch (const Exception& e) |
| 4363 | { |
| 4364 | e.stuffException(status); |
| 4365 | } |
| 4366 | |
| 4367 | return 0; |
| 4368 | } |
| 4369 | |
| 4370 | const char* YStatement::getPlan(CheckStatusWrapper* status, FB_BOOLEAN detailed) |
| 4371 | { |
no test coverage detected