4paradigm / 4paradigm/OpenMLDB
cli: print is unclear when a row is empty string
Open
bug
enhancement
- Dominant language
- C++
- Stars
- 1.7k
- Forks
- 331
- Avg merge
- 12d 12h
- Merged PRs (30d)
- 1
Description
version v0.7.1
src csv:
```
c1,c2
,
"",""
```
load data to online in cluster load_mode, select * result is:
```
------ ------
c1 c2
------ ------
NULL NULL
------ ------
2 rows in set
```
2 rows in set, but seems like just one row.
The offline print sytle is more clear:
```
+----+----+
| c1| c2|
+----+----+
|null|null|
| | |
+----+----+
```
Contributor guide
Assessment
This issue has not been assessed yet.