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 18
18
package org .apache .spark .sql .sources .v2 ;
19
19
20
20
/**
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.
22
23
*
23
24
* Note that this is an empty interface, data source implementations should mix-in at least one of
24
25
* 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 20
20
import java .util .OptionalLong ;
21
21
22
22
/**
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`.
24
25
*/
25
26
public interface Statistics {
26
27
OptionalLong sizeInBytes ();
You can’t perform that action at this time.
0 commit comments