Skip to content
Snippets Groups Projects
Commit 3ae63b80 authored by Marcelo Vanzin's avatar Marcelo Vanzin Committed by Reynold Xin
Browse files

[SPARK-18752][SQL] Follow-up: add scaladoc explaining isSrcLocal arg.

Author: Marcelo Vanzin <vanzin@cloudera.com>

Closes #16257 from vanzin/SPARK-18752.2.
parent ae5b2d3e
No related branches found
No related tags found
No related merge requests found
......@@ -114,6 +114,12 @@ abstract class ExternalCatalog {
def listTables(db: String, pattern: String): Seq[String]
/**
* Loads data into a table.
*
* @param isSrcLocal Whether the source data is local, as defined by the "LOAD DATA LOCAL"
* HiveQL command.
*/
def loadTable(
db: String,
table: String,
......@@ -122,6 +128,12 @@ abstract class ExternalCatalog {
holdDDLTime: Boolean,
isSrcLocal: Boolean): Unit
/**
* Loads data into a partition.
*
* @param isSrcLocal Whether the source data is local, as defined by the "LOAD DATA LOCAL"
* HiveQL command.
*/
def loadPartition(
db: String,
table: String,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment