| 2270 | } |
| 2271 | |
| 2272 | static void lua_another_step(struct sqlclntstate *clnt, |
| 2273 | sqlite3_stmt *pStmt, int rc) |
| 2274 | { |
| 2275 | Vdbe *pVdbe = (Vdbe*)pStmt; |
| 2276 | |
| 2277 | if ((pVdbe != NULL) && (rc == SQLITE_ROW)) { |
| 2278 | pVdbe->luaRows++; |
| 2279 | } |
| 2280 | } |
| 2281 | |
| 2282 | static void lua_end_step(struct sqlclntstate *clnt, SP sp, |
| 2283 | sqlite3_stmt *pStmt) |
no outgoing calls
no test coverage detected