()
| 32 | |
| 33 | |
| 34 | def test_arrow_string_option(): |
| 35 | df = timeseries(dtypes={"x": object, "y": float}, seed=123) |
| 36 | result = df.optimize(fuse=False) |
| 37 | assert result.x.dtype == "string" if pyarrow_strings_enabled() else object |
| 38 | assert result.x.compute().dtype == "string" if pyarrow_strings_enabled() else object |
| 39 | |
| 40 | |
| 41 | def test_column_projection_deterministic(): |
nothing calls this directly
no test coverage detected