1818import org .apache .arrow .vector .types .pojo .Schema ;
1919
2020/**
21- * A set of Vortex files opened through a {@link Session}. Data sources are cheap to open
22- * (only the first file is read eagerly, to determine the schema) and can be scanned
23- * multiple times.
21+ * A set of Vortex files opened through a {@link Session}. Data sources are cheap to open (only the first file is read
22+ * eagerly, to determine the schema) and can be scanned multiple times.
2423 *
25- * <p>Native resources are released automatically via {@link VortexCleaner} when the
26- * data source becomes unreachable.
24+ * <p>Native resources are released automatically via {@link VortexCleaner} when the data source becomes unreachable.
2725 */
2826public final class DataSource {
2927 private final Session session ;
@@ -42,8 +40,8 @@ public static DataSource open(Session session, String uri) {
4240 }
4341
4442 /**
45- * Open one or more URIs or globs. When a glob is used, the first match is opened eagerly;
46- * subsequent matches are opened lazily on scan.
43+ * Open one or more URIs or globs. When a glob is used, the first match is opened eagerly; subsequent matches are
44+ * opened lazily on scan.
4745 *
4846 * @param session open session
4947 * @param uri single URI or glob
@@ -54,8 +52,8 @@ public static DataSource open(Session session, String uri, Map<String, String> p
5452 }
5553
5654 /**
57- * Open one or more URIs or globs. When a glob is used, the first match is opened eagerly;
58- * subsequent matches are opened lazily on scan.
55+ * Open one or more URIs or globs. When a glob is used, the first match is opened eagerly; subsequent matches are
56+ * opened lazily on scan.
5957 *
6058 * @param session open session
6159 * @param uris URIs or globs to scan
@@ -82,9 +80,8 @@ public Schema arrowSchema(BufferAllocator allocator) {
8280 }
8381
8482 /**
85- * Row count along with the precision of that estimate. Mirrors the Rust
86- * {@code Option<Precision<u64>>} returned by {@code DataSource::row_count}:
87- * {@link RowCount.Unknown} when no estimate is available, {@link RowCount.Estimate}
83+ * Row count along with the precision of that estimate. Mirrors the Rust {@code Option<Precision<u64>>} returned by
84+ * {@code DataSource::row_count}: {@link RowCount.Unknown} when no estimate is available, {@link RowCount.Estimate}
8885 * for an inexact hint, {@link RowCount.Exact} when the count is authoritative.
8986 */
9087 public RowCount rowCount () {
0 commit comments