DT[f.A == "", :] is bugged for columns with all empty strings
Open
bug
- Dominant language
- C++
- Stars
- 1.9k
- Forks
- 164
- Avg merge
- 7h 31m
- Merged PRs (30d)
- 1
Description
```Python
from datatable import dt, f
DT = dt.Frame({"A": ["", ""]})
DT[f.A == "", dt.count()][0, 0]
# 0
```
If any value in the column is not an empty string, it works as expected.
Workaround:
```Python
DT[dt.str.len(f.A) == 0, dt.count()][0, 0]
# 2
```
Contributor guide
Assessment
This issue has not been assessed yet.