| 612 | |
| 613 | |
| 614 | void EngineCallbacks::isVersion4(bool& v4) |
| 615 | { |
| 616 | thread_db* tdbb = JRD_get_thread_data(); |
| 617 | |
| 618 | if (tdbb && (tdbb->getType() == ThreadData::tddDBB) && tdbb->getRequest()) |
| 619 | { |
| 620 | v4 = (tdbb->getRequest()->getStatement()->blrVersion == 4); |
| 621 | } |
| 622 | } |
nothing calls this directly
no test coverage detected