@@ -1717,3 +1717,33 @@ def test_is_monotonic_pyarrow_list_type():
1717
1717
idx = Index ([[1 ], [2 , 3 ]], dtype = pd .ArrowDtype (pa .list_ (pa .int64 ())))
1718
1718
assert not idx .is_monotonic_increasing
1719
1719
assert not idx .is_monotonic_decreasing
1720
+
1721
+ def test_index_equals_string_vs_object ():
1722
+ idx1 = pd .Index (['a' , 'b' , 'c' ])
1723
+ idx2 = pd .Index (['a' , 'b' , 'c' ], dtype = 'string' )
1724
+ assert idx1 .equals (idx2 )
1725
+ assert idx2 .equals (idx1 )
1726
+
1727
+ def test_compare_string_vs_object_index_equality ():
1728
+ s1 = pd .Series ([1 , 2 , 3 ], index = ['a' , 'b' , 'c' ]) # dtype=object
1729
+ s2 = pd .Series ([0 , 1 , 2 ], index = pd .Index (['a' , 'b' , 'c' ], dtype = 'string' )) # dtype=string
1730
+
1731
+ result = s1 > s2
1732
+ expected = pd .Series ([True , True , True ], index = ['a' , 'b' , 'c' ])
1733
+ pd .testing .assert_series_equal (result , expected )
1734
+
1735
+ def test_align_string_vs_object_index ():
1736
+ s1 = pd .Series ([1 , 2 , 3 ], index = ['a' , 'b' , 'c' ]) # object
1737
+ s2 = pd .Series ([1 , 2 , 3 ], index = pd .Index (['a' , 'b' , 'c' ], dtype = 'string' )) # string
1738
+
1739
+ s1_aligned , s2_aligned = s1 .align (s2 )
1740
+ assert list (s1_aligned .index ) == list (s2_aligned .index )
1741
+
1742
+ def test_comparison_without_manual_casting ():
1743
+ s1 = pd .Series ([1 , 2 , 3 ], index = ['a' , 'b' , 'c' ]) # object index
1744
+ s2 = pd .Series ([1 , 2 , 3 ], index = pd .Index (['a' , 'b' , 'c' ], dtype = 'string' ))
1745
+
1746
+ # Should not raise
1747
+ result = s1 == s2
1748
+ expected = pd .Series ([True , True , True ], index = ['a' , 'b' , 'c' ])
1749
+ pd .testing .assert_series_equal (result , expected )
0 commit comments