You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by "Lionx (JIRA)" <ji...@apache.org> on 2016/12/01 14:22:58 UTC

[jira] [Created] (CARBONDATA-479) Guarantee consistency for keyword LOCAL and file path in data loading command

Lionx created CARBONDATA-479:
--------------------------------

             Summary: Guarantee consistency for keyword LOCAL and file path in data loading command
                 Key: CARBONDATA-479
                 URL: https://issues.apache.org/jira/browse/CARBONDATA-479
             Project: CarbonData
          Issue Type: Bug
            Reporter: Lionx
            Priority: Minor


In CarbonSqlParser.scala,
protected lazy val loadDataNew: Parser[LogicalPlan] =
    LOAD ~> DATA ~> opt(LOCAL) ~> INPATH ~> stringLit ~ opt(OVERWRITE) ~
    (INTO ~> TABLE ~> (ident <~ ".").? ~ ident) ~
    (OPTIONS ~> "(" ~> repsep(loadOptions, ",") <~ ")").? <~ opt(";") ^^ {
      case filePath ~ isOverwrite ~ table ~ optionsList =>
        val (databaseNameOp, tableName) = table match {
          case databaseName ~ tableName => (databaseName, tableName.toLowerCase())
        }
        if (optionsList.isDefined) {
          validateOptions(optionsList)
        }
        val optionsMap = optionsList.getOrElse(List.empty[(String, String)]).toMap
        LoadTable(databaseNameOp, tableName, filePath, Seq(), optionsMap,
          isOverwrite.isDefined)
    }

It seems that using Keyword LOCAL impacts noting. Loading data from hdfs or file just depends on the path.  





--
This message was sent by Atlassian JIRA
(v6.3.4#6332)