| 2320 | } |
| 2321 | |
| 2322 | static void lua_end_all_step(struct sqlclntstate *clnt, SP sp) |
| 2323 | { |
| 2324 | if (sp != NULL) { |
| 2325 | dbstmt_t *dbstmt, *tmp; |
| 2326 | LIST_FOREACH_SAFE(dbstmt, &sp->dbstmts, entries, tmp) { |
| 2327 | lua_end_step(clnt, sp, dbstmt->stmt); |
| 2328 | } |
| 2329 | } |
| 2330 | } |
| 2331 | |
| 2332 | static int lua_get_prepare_flags() |
| 2333 | { |
no test coverage detected