retrive the resultset statistics
| 304 | |
| 305 | // retrive the resultset statistics |
| 306 | ResultSetStatistics *QueryCtx_GetResultSetStatistics(void) { |
| 307 | ResultSetStatistics *stats = NULL; |
| 308 | ResultSet *result_set = QueryCtx_GetResultSet(); |
| 309 | if(result_set) stats = &result_set->stats; |
| 310 | return stats; |
| 311 | } |
| 312 | |
| 313 | // print the current query |
| 314 | void QueryCtx_PrintQuery(void) { |
no test coverage detected