| 194 | void onRequestFinish(Request* request, Stats& stats); |
| 195 | |
| 196 | void beforePsqlLineColumn(Request* request, ULONG line, ULONG column) |
| 197 | { |
| 198 | if (const auto profileRequestId = getRequest(request, Firebird::IProfilerSession::FLAG_BEFORE_EVENTS)) |
| 199 | { |
| 200 | const auto profileStatement = getStatement(request); |
| 201 | currentSession->pluginSession->beforePsqlLineColumn(profileStatement->id, profileRequestId, line, column); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | void afterPsqlLineColumn(Request* request, ULONG line, ULONG column, Stats& stats) |
| 206 | { |
no test coverage detected