| // this is data case file for array<float> type, contains normal, corner, exceptional data cases |
| [] |
| [null] |
| NULL |
| // single element |
| [0.0] |
| // float min/max value (IEEE 754) |
| [-3.40282e+38, 3.40282e+38] |
| // float min/max value + 1 (异常) |
| [-3.40282e+37, 3.40282e+37] |
| // float -1-16 |
| [-1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0] |
| // float 0-16 with null |
| [0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, null, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0] |
| [1.1, 2.2, 0, -1, 0.000000, NULL] |
| // all data contains below |
| [-3.40282e+38, -3.40282e+37, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 3.40282e+37, 3.40282e+38] |