Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Not A Problem
-
1.99.4
-
None
Description
In class CSVIntermediateDataFormat , line 188:
if (fields[i].equals("NULL")) {
out[i] = null;
continue;
}
in my database, i read 'null' from db. But the conditions is equal 'NULL'. So it will throw NumberFormatException when convert into Interger or Float.