Skip to content
Snippets Groups Projects
Verified Commit 11924a48 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

Fix some copy-paste errors

parent d70e76f0
No related branches found
No related tags found
1 merge request!12F release results
Pipeline #13227 failed
This commit is part of merge request !12. Comments created here will be created in the context of that merge request.
...@@ -444,7 +444,7 @@ result set which is about to be destroyed anyway. ...@@ -444,7 +444,7 @@ result set which is about to be destroyed anyway.
""" """
function _release_result_at(results::Ref{_ResultSet}, index::Cint) function _release_result_at(results::Ref{_ResultSet}, index::Cint)
size = release_result_size(results) size = get_result_size(results)
if index > size if index > size
throw( throw(
...@@ -526,7 +526,7 @@ function _release_results(transaction::Ref{_Transaction}) ...@@ -526,7 +526,7 @@ function _release_results(transaction::Ref{_Transaction})
end end
""" """
function _release_results(transaction::Ref{_ResultSet}) function _release_results(result_set::Ref{_ResultSet})
Return all entities of the given `result_set`. Return all entities of the given `result_set`.
...@@ -534,7 +534,7 @@ This function also leaves the result_set object in a corrupted state and ...@@ -534,7 +534,7 @@ This function also leaves the result_set object in a corrupted state and
should only be used to release the entities from a result_set which is about to should only be used to release the entities from a result_set which is about to
be destroyed anyway. be destroyed anyway.
""" """
function _release_results(transaction::Ref{_ResultSet}) function _release_results(result_set::Ref{_ResultSet})
size = get_result_size(result_set) size = get_result_size(result_set)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment