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
Hi there, when the member "response" of Rethinkdb::Response is a hash instead of an array (see https://github.com/njlg/perl-rethinkdb/blob/master/lib/Rethinkdb/Response.pm#L39 ) the code in at https://github.com/njlg/perl-rethinkdb/blob/master/lib/Rethinkdb/IO.pm#L410 will probably fail
push @{ $res_data->{r} }, @{ $more->response };
because
$more->response
returns a hash instead of an array
The text was updated successfully, but these errors were encountered:
Cool. I'll look into that. I need to figure out a good way to test that part of the code.
Sorry, something went wrong.
No branches or pull requests
Hi there,
when the member "response" of Rethinkdb::Response is a hash instead of an array
(see https://github.com/njlg/perl-rethinkdb/blob/master/lib/Rethinkdb/Response.pm#L39 )
the code in at https://github.com/njlg/perl-rethinkdb/blob/master/lib/Rethinkdb/IO.pm#L410 will probably fail
because
returns a hash instead of an array
The text was updated successfully, but these errors were encountered: