| 5208 | }; |
| 5209 | |
| 5210 | static void init_dbthread_funcs(Lua L) |
| 5211 | { |
| 5212 | luaL_newmetatable(L, dbtypes.dbthread); |
| 5213 | lua_pushvalue(L, -1); |
| 5214 | lua_setfield(L, -2, "__index"); |
| 5215 | luaL_openlib(L, NULL, dbthread_funcs, 0); |
| 5216 | lua_pop(L, 1); |
| 5217 | } |
| 5218 | |
| 5219 | static const struct luaL_Reg dbconsumer_funcs[] = { |
| 5220 | {"__gc", dbconsumer_free}, |
no test coverage detected