| // this is data case file for array<tinyint> type, contains normal, corner, exceptional data cases |
| [] |
| [null] |
| NULL |
| // single element |
| [0] |
| // tinyint min/max value |
| [-128, 127] |
| // tinyint min/max value + 1 (异常) |
| [-127, 128] |
| // tinyint min/max value - 1 (异常) |
| [-129, 126] |
| // tinyint -1-16 |
| [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] |
| // tinyint 0-16 with null |
| [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, null, 11, 12, 13, 14, 15, 16] |
| // sqrt(max) + 1 (异常) |
| [11, 12] |
| // all data contains below |
| [-128, 127, -127, 128, -129, 126, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, null, 11, 12, 13, 14, 15, 16, 11, 12] |