File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
sql/catalyst/src/main/java/org/apache/spark/sql/connector/write Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ public interface BatchWrite {
46
46
* If this method fails (by throwing an exception), the action will fail and no Spark job will be
47
47
* submitted.
48
48
*
49
- * @param info Physical information about the input data that will be written to this data writer .
49
+ * @param info Physical information about the input data that will be written to this table .
50
50
*/
51
51
DataWriterFactory createBatchWriterFactory (PhysicalWriteInfo info );
52
52
Original file line number Diff line number Diff line change 27
27
@ Evolving
28
28
public interface LogicalWriteInfo {
29
29
/**
30
- * @return `queryId` is a unique string of the query. It's possible that there are many queries
30
+ * `queryId` is a unique string of the query. It's possible that there are many queries
31
31
* running at the same time, or a query is restarted and resumed. {@link BatchWrite} can use
32
32
* this id to identify the query.
33
33
*/
34
34
String queryId ();
35
35
36
36
/**
37
- * @return the schema of the input data from Spark to data source.
37
+ * the schema of the input data from Spark to data source.
38
38
*/
39
39
StructType schema ();
40
40
}
Original file line number Diff line number Diff line change 27
27
@ Evolving
28
28
public interface PhysicalWriteInfo {
29
29
/**
30
- * @return The number of partitions of the input data that is going to be written.
30
+ * The number of partitions of the input data that is going to be written.
31
31
*/
32
32
int numPartitions ();
33
33
}
You can’t perform that action at this time.
0 commit comments