()
| 2542 | |
| 2543 | |
| 2544 | def test_isin_strings(): |
| 2545 | pdf = pd.DataFrame({"foo": ["1", "2", "3"]}) |
| 2546 | df = from_pandas(pdf) |
| 2547 | assert_eq(df.foo.isin(["1", "2"]), pdf.foo.isin(["1", "2"])) |
| 2548 | |
| 2549 | |
| 2550 | def test_predicate_pushdown_ndim_change(df, pdf): |
nothing calls this directly
no test coverage detected