File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
sql/core/src/main/java/org/apache/spark/sql/sources/v2 Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1818package org .apache .spark .sql .sources .v2 ;
1919
2020/**
21- * The base interface for data source v2 implementations.
21+ * The base interface for data source v2. Implementations must have a public, no arguments
22+ * constructor.
2223 *
2324 * Note that this is an empty interface, data source implementations should mix-in at least one of
2425 * the plug-in interfaces like `ReadSupport`. Otherwise it's just a dummy data source which is
Original file line number Diff line number Diff line change 2020import java .util .OptionalLong ;
2121
2222/**
23- * An interface to represent statistics for a data source.
23+ * An interface to represent statistics for a data source, which is returned by
24+ * `SupportsReportStatistics`.
2425 */
2526public interface Statistics {
2627 OptionalLong sizeInBytes ();
You can’t perform that action at this time.
0 commit comments