File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
client-v2/src/main/java/com/clickhouse/client/api/data_formats Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -51,9 +51,12 @@ public interface ClickHouseBinaryFormatReader extends AutoCloseable {
5151 boolean hasNext ();
5252
5353 /**
54- * Moves cursor to the next row. Must be called before reading the first row.
54+ * Moves cursor to the next row. Must be called before reading the first row. Returns reference to
55+ * an internal record representation. It means that next call to the method will affect value in returned Map.
56+ * This is done for memory usage optimization.
57+ * Method is intended to be used only by the client not an application.
5558 *
56- * @return map filled with column values or null if no more records are available
59+ * @return reference to a map filled with column values or null if no more records are available
5760 */
5861 Map <String , Object > next ();
5962
You can’t perform that action at this time.
0 commit comments