TestConstructQuery.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:1k
源码类别:

网格计算

开发平台:

Java

  1. package org.apache.hadoop.mapred.lib.db;
  2. import org.apache.hadoop.io.NullWritable;
  3. import junit.framework.TestCase;
  4. public class TestConstructQuery extends TestCase {
  5.   public void testConstructQuery() {
  6.     DBOutputFormat<DBWritable, NullWritable> format = new DBOutputFormat<DBWritable, NullWritable>();
  7.     String expected = "INSERT INTO hadoop_output (id,name,value) VALUES (?,?,?);";
  8.     String[] fieldNames = new String[] { "id", "name", "value" };
  9.     String actual = format.constructQuery("hadoop_output", fieldNames);
  10.     assertEquals(expected, actual);
  11.     expected = "INSERT INTO hadoop_output VALUES (?,?,?);";
  12.     fieldNames = new String[] { null, null, null };
  13.     actual = format.constructQuery("hadoop_output", fieldNames);
  14.     assertEquals(expected, actual);
  15.   }
  16. }