Fix column order check breaking on tiny columns

This commit is contained in:
s809
2025-01-23 00:15:01 +05:00
parent 00559b5d34
commit 9b261f6472
@@ -866,6 +866,11 @@ public class FullDataSourceV2
*/
public static void throwIfDataColumnInWrongOrder(long pos, LongArrayList dataArray) throws IllegalStateException
{
if (dataArray.size() < 2)
{
return;
}
long firstDataPoint = dataArray.getLong(0);
int firstBottomY = FullDataPointUtil.getBottomY(firstDataPoint);