Package org.apache.hadoop.hbase.mapreduce.ImportTsv.TsvParser

Examples of org.apache.hadoop.hbase.mapreduce.ImportTsv.TsvParser.ParsedLine


  @Test(expected=BadTsvLineException.class)
  public void testTsvParserBadTsvLineZeroColumn() throws BadTsvLineException {
    TsvParser parser = new TsvParser("HBASE_ROW_KEY,col_a", "\t");
    byte[] line = Bytes.toBytes("");
    ParsedLine parsed = parser.parse(line, line.length);
  }
View Full Code Here


  @Test(expected=BadTsvLineException.class)
  public void testTsvParserBadTsvLineOnlyKey() throws BadTsvLineException {
    TsvParser parser = new TsvParser("HBASE_ROW_KEY,col_a", "\t");
    byte[] line = Bytes.toBytes("key_only");
    ParsedLine parsed = parser.parse(line, line.length);
  }
View Full Code Here

  @Test(expected=BadTsvLineException.class)
  public void testTsvParserBadTsvLineNoRowKey() throws BadTsvLineException {
    TsvParser parser = new TsvParser("col_a,HBASE_ROW_KEY", "\t");
    byte[] line = Bytes.toBytes("only_cola_data_and_no_row_key");
    ParsedLine parsed = parser.parse(line, line.length);
  }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.mapreduce.ImportTsv.TsvParser.ParsedLine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.