| 5875 | } |
| 5876 | |
| 5877 | static int push_real_array(Lua L, struct param_data *p) |
| 5878 | { |
| 5879 | lua_newtable(L); |
| 5880 | double *ds = p->u.p; |
| 5881 | for (int i = 0; i < p->arraylen; ++i) { |
| 5882 | luabb_pushreal(L, ds[i]); |
| 5883 | lua_rawseti(L, -2, i + 1); |
| 5884 | } |
| 5885 | return 0; |
| 5886 | } |
| 5887 | |
| 5888 | static int push_param(Lua L, struct sqlclntstate *clnt, int64_t index) |
| 5889 | { |
no test coverage detected