We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to return 300 tuples from lua-function, I get "Can't read query from server" and nothing in tarantool log.
P.S.
The text was updated successfully, but these errors were encountered:
Hi! Can you provide a testcase? I can't reproduce it.
Sorry, something went wrong.
This example is little bit artificial, but it is easy to reproduce and it shows the problem: lua:
function myfetch(count) local i = 0 local result = {} while i < count do table.insert(result, {1,2,3,4,5,6,7,8,9,10}) i = i + 1 end return result end
php:
$count = 1487; $response = $tarantool->call('myfetch', [$count]);
In my case it works when $count <=1486, but it crashes when $count > 1486.
Add random/boolean tests
b155500
closes gh-87, closes gh-90
bigbes
No branches or pull requests
When I try to return 300 tuples from lua-function, I get "Can't read query from server" and nothing in tarantool log.
P.S.
The text was updated successfully, but these errors were encountered: