We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4156450 commit 3eab7cbCopy full SHA for 3eab7cb
1 file changed
tests/integration/test_reads.py
@@ -332,7 +332,7 @@ def test_daft_nan(catalog: Catalog) -> None:
332
def test_daft_nan_rewritten(catalog: Catalog) -> None:
333
table_test_null_nan_rewritten = catalog.load_table("default.test_null_nan_rewritten")
334
df = table_test_null_nan_rewritten.to_daft()
335
- df = df.where(df["col_numeric"].float.is_nan())
+ df = df.where(df["col_numeric"].is_nan())
336
df = df.select("idx", "col_numeric")
337
assert df.count_rows() == 1
338
assert df.to_pydict()["idx"][0] == 1
0 commit comments