Francisco Castro
Francisco Castro
Documentation says that partition returns `{gen1, param1, state1}, {gen2, param2, state2}`, yet what is really being returned is `gen1, gen2, param2, state2`.
Given the following schema: ```python class MyQuerySchema(QuerySchema): status = CommaSeparatedList( cls_or_instance=fields.Str(), validate=ContainsOnly(choices=["foo", "bar"]), ) ``` Swagger-generator is producing the following output: ```javascript { "collectionFormat": "csv", "enum": [ "foo", "bar" ],...
This pull request is based on the PR #99, however this one adds additional support for reusing prepared statements. Example: ```lua local driver = require 'luasql.mysql'.mysql() local conn = assert(driver:connect('test'))...
Instead of hardcoding include&library paths, how about using pkg-config?
With this modification we can enjoy the security benefits of having prepared-statement-alike additional parameters. To do this, the additional parameters should be passed after the statement in the execute method....
How about something like this? ```lua function dump(row, parameters) local separator = (parameter or {}).separator or ',' local res = {} for i, value in ipairs(row) do local value =...
We found this issue when observed a ValidationError being thrown when serializing the response of an endpoint. The curiosity of this issue is that it happens in the `compat.dump` when...
This PR adds support for `luajit` on `vert`, or at least it tries to. Since I only tested it on my computer (ubuntu 20.04 LTS on amd64), I did not...