nizhikov commented on code in PR #11613: URL: https://github.com/apache/ignite/pull/11613#discussion_r1812747663
########## modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/twostep/GridMapQueryExecutor.java: ########## @@ -998,6 +999,25 @@ private GridQueryNextPageResponse prepareNextPage( } } + /** */ + private static List<Value[]> toPlainRows(List<Value[]> rows, int cols) { + if (F.isEmpty(rows) || rows.get(0).length == cols) Review Comment: I believe there are no such case. Do you have some specific scenario in mind? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org