We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c46875b commit a3d6fe6Copy full SHA for a3d6fe6
pandas/core/reshape/merge.py
@@ -921,15 +921,13 @@ def _maybe_coerce_merge_keys(self):
921
'are not equal to their int '
922
'representation', UserWarning)
923
924
-
925
elif is_float_dtype(rk) and is_integer_dtype(lk):
926
if not (rk == rk.astype(lk.dtype)).all():
927
warnings.warn('You are merging on int and float '
928
'columns where the float values '
929
930
931
932
933
# let's infer and see if we are ok
934
elif lib.infer_dtype(lk) == lib.infer_dtype(rk):
935
pass
0 commit comments