Jarek Jarcec Cecho created SQOOP-653:
----------------------------------------

             Summary: Add splitter support for N(LONG)(VAR)CHAR Sql type
                 Key: SQOOP-653
                 URL: https://issues.apache.org/jira/browse/SQOOP-653
             Project: Sqoop
          Issue Type: Improvement
    Affects Versions: 1.4.2
            Reporter: Jarek Jarcec Cecho
             Fix For: 1.4.3


Sqoop currently do not support splitting data on N(LONG)(VAR)CHAR column types. 
We're however supporting splitting on (LONG)(VAR)CHAR using TextSplitter:

{code}
    case Types.CHAR:
    case Types.VARCHAR:
    case Types.LONGVARCHAR:
      return new TextSplitter();
{code}

I believe that adding support of N(LONG)(VAR)CHAR splitter could be only matter 
of adding appropriate cases into this code snippet, but such addition must be 
properly tested.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to