| 3339 | } |
| 3340 | |
| 3341 | static int dbstmt_free(Lua L) |
| 3342 | { |
| 3343 | dbstmt_t *stmt = lua_touserdata(L, -1); |
| 3344 | SP sp = getsp(L); |
| 3345 | |
| 3346 | /* Compute and add fingerprint for this statement in case it wasn't |
| 3347 | done already. */ |
| 3348 | lua_end_step(sp->clnt, sp, stmt->stmt); |
| 3349 | |
| 3350 | donate_stmt(sp, stmt); |
| 3351 | return 0; |
| 3352 | } |
| 3353 | |
| 3354 | static int dbstmt_bind(Lua L) |
| 3355 | { |
nothing calls this directly
no test coverage detected