Count - Count the rows of CSV files
Count result: 3
┌─────┬────────┐
│ idx │ name │
├─────┼────────┤
│ 1 │ tom │
│ 2 │ jerry │
│ 3 | hansen |
└─────┴────────┘
2. Index - add index for csv
Check result: 2
(This is an incorrect result)
┌─────┬────────┐
│ idx │ name │
├─────┼────────┤
│ 1 │ tom │
│ 2 │ "jerry │
│ 3 | hansen |
└─────┴────────┘