You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewInvalidDataException("Array elements cannot be null for QuestDB double arrays");
591
+
}
592
+
List<?> rowList = (List<?>) row;
593
+
if (rowList.size() != expectedRowLength) {
594
+
thrownewInvalidDataException("QuestDB does not support jagged arrays. All rows must have the same length. Expected: " + expectedRowLength + ", but row " + i + " has length: " + rowList.size());
thrownewInvalidDataException("Array elements cannot be null for QuestDB double arrays");
628
+
}
629
+
List<?> matrixList = (List<?>) matrix;
630
+
if (matrixList.size() != expectedMatrixHeight) {
631
+
thrownewInvalidDataException("QuestDB does not support jagged arrays. All matrices must have the same height. Expected: " + expectedMatrixHeight + ", but matrix " + i + " has height: " + matrixList.size());
632
+
}
633
+
634
+
for (intj = 0; j < matrixList.size(); j++) {
635
+
Objectrow = matrixList.get(j);
636
+
if (row == null) {
637
+
thrownewInvalidDataException("Array elements cannot be null for QuestDB double arrays");
638
+
}
639
+
List<?> rowList = (List<?>) row;
640
+
if (rowList.size() != expectedRowLength) {
641
+
thrownewInvalidDataException("QuestDB does not support jagged arrays. All rows must have the same length. Expected: " + expectedRowLength + ", but matrix " + i + " row " + j + " has length: " + rowList.size());
thrownewInvalidDataException("QuestDB 2D array rows must be Lists");
683
721
}
684
722
List<?> rowList = (List<?>) row;
723
+
if (rowList.size() != expectedRowLength) {
724
+
thrownewInvalidDataException("QuestDB does not support jagged arrays. All rows must have the same length. Expected: " + expectedRowLength + ", but row " + i + " has length: " + rowList.size());
thrownewInvalidDataException("QuestDB does not support jagged arrays. All matrices must have the same height. Expected: " + expectedMatrixHeight + ", but matrix " + i + " has height: " + matrixList.size());
thrownewInvalidDataException("QuestDB 3D array rows must be Lists");
727
780
}
728
781
List<?> rowList = (List<?>) row;
782
+
if (rowList.size() != expectedRowLength) {
783
+
thrownewInvalidDataException("QuestDB does not support jagged arrays. All rows must have the same length. Expected: " + expectedRowLength + ", but matrix " + i + " row " + j + " has length: " + rowList.size());
0 commit comments