(a, b)
| 512 | |
| 513 | |
| 514 | def _maybe_convert_string(a, b): |
| 515 | if pyarrow_strings_enabled(): |
| 516 | from dask.dataframe._pyarrow import to_pyarrow_string |
| 517 | |
| 518 | if isinstance(a, (pd.DataFrame, pd.Series, pd.Index)): |
| 519 | a = to_pyarrow_string(a) |
| 520 | |
| 521 | if isinstance(b, (pd.DataFrame, pd.Series, pd.Index)): |
| 522 | b = to_pyarrow_string(b) |
| 523 | |
| 524 | return a, b |
| 525 | |
| 526 | |
| 527 | def assert_eq_dtypes(a, b): |
no test coverage detected
searching dependent graphs…