Skip to content
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

Circular reference in DataFrame bug #2135

Closed
bkamins opened this issue Mar 2, 2020 · 1 comment · Fixed by #2200
Closed

Circular reference in DataFrame bug #2135

bkamins opened this issue Mar 2, 2020 · 1 comment · Fixed by #2200
Labels
bug help wanted This issue is up for grabs if someone is interested in working on it non-breaking The proposed change is not breaking
Milestone

Comments

@bkamins
Copy link
Member

bkamins commented Mar 2, 2020

This should be fixed

julia> df = DataFrame(x=Any[1])
1×1 DataFrame
│ Row │ x   │
│     │ Any │
├─────┼─────┤
│ 1   │ 1   │

julia> df[1, :x] = df
Error showing value of type DataFrame:
ERROR: StackOverflowError:

(though it is probably a minor thing)

@bkamins bkamins added bug non-breaking The proposed change is not breaking help wanted This issue is up for grabs if someone is interested in working on it labels Mar 2, 2020
@bkamins bkamins added this to the 1.x milestone Mar 2, 2020
@bkamins
Copy link
Member Author

bkamins commented Mar 2, 2020

Also:

julia> df[1,1] = df[1, :]
DataFrameRowError showing value of type DataFrameRow{DataFrame,DataFrames.Index}:
ERROR: StackOverflowError:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug help wanted This issue is up for grabs if someone is interested in working on it non-breaking The proposed change is not breaking
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant