Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
0.9.0
-
None
Description
In RowBatch line 174, we are allocating buffer size for text datatype. But we fail to consider we need to put the length of the text firstly and then put the text itself. The bugging code as following:
```
case TEXT:
for (Binary value: (Binary[]) values[i])
break;
```