-
Notifications
You must be signed in to change notification settings - Fork 478
New issue
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
Using row::move_as
while iterating rowset
yields segmentation fault
#1144
Comments
The problem seems to boil down to this:
Therefore, the fix for this issue would be to find a way to let the |
rowset::move_as
can lead to segmentation faultsrow::move_as
while iterating rowset
yields segmentation fault
May be we could use shared_ptr inside the "row" class and eliminate move_as altogether ? |
Nah, the |
Originally reported by @avpalienko in #1141 (comment)
When applying the following patch to the
common-tests.h
file, themove_as
test case will crash due to a segmentation fault:The issue was originally reported to happen with Oracle, but I was also able to reproduce it with SQLite3, indicating that the issue is not backend-specific.
The text was updated successfully, but these errors were encountered: