-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
BUG: Fix merging non-indexes causes Index dtype promotion in when keys are missing #28436
Conversation
Looks like a MultiIndex is getting mixed up with a RangeIndex. Did this pass locally? |
I ran the merging unit tests in test_merge. I'll spend some time to fix the others |
59b8977
to
a0a95c2
Compare
2de0f23
to
23b37c3
Compare
can you merge master and will have a look |
3e1b7f0
to
730c97c
Compare
I've rebased with upstream/master. Thanks! |
Just checking in to see if I did what you asked of correctly. Cheers |
@dworvos needs another rebase |
…s are missing from left or right side. (GH28220) Also closes GH24897, GH24212, and GH17257
730c97c
to
ec70eee
Compare
@dworvos i think we'd take this, but needs some work if you want to continue, pls ping |
Sure, I can take a look, but I'd like some feedback on what needs to be done rather than just constantly rebasing and getting nowhere? |
... from left or right side. (GH28220)
Also closes GH24897, GH24212, and GH17257
black pandas
git diff upstream/master -u -- "*.py" | flake8 --diff
Probably requires a bit more cleanup and reduction of spaghetti... Not in love with the the solution (as it's quite similar to using both indexes) and requires extension test case changes, but hoping to get some comments and feedback on making it better.