/hive/src/test/java/com/mongodb/hadoop/hive/MongoStorageHandlerTest.java

http://github.com/mongodb/mongo-hadoop · Java · 110 lines · 94 code · 10 blank · 6 comment · 0 complexity · fa8c23e5290235617d83f6b1fbe13c35 MD5 · raw file

  1. package com.mongodb.hadoop.hive;
  2. import org.apache.hadoop.conf.Configuration;
  3. import org.apache.hadoop.hive.ql.metadata.HiveStoragePredicateHandler;
  4. import org.apache.hadoop.hive.ql.plan.ExprNodeColumnDesc;
  5. import org.apache.hadoop.hive.ql.plan.ExprNodeConstantDesc;
  6. import org.apache.hadoop.hive.ql.plan.ExprNodeDesc;
  7. import org.apache.hadoop.hive.ql.plan.ExprNodeGenericFuncDesc;
  8. import org.apache.hadoop.hive.ql.udf.generic.GenericUDFBetween;
  9. import org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPAnd;
  10. import org.apache.hadoop.hive.ql.udf.generic.GenericUDFOPGreaterThan;
  11. import org.apache.hadoop.hive.serde.serdeConstants;
  12. import org.apache.hadoop.hive.serde2.SerDeException;
  13. import org.apache.hadoop.hive.serde2.typeinfo.TypeInfoFactory;
  14. import org.junit.Test;
  15. import java.util.Arrays;
  16. import java.util.Properties;
  17. import static org.junit.Assert.assertEquals;
  18. import static org.junit.Assert.assertNull;
  19. public class MongoStorageHandlerTest extends HiveTest {
  20. private static MongoStorageHandler msh = new MongoStorageHandler();
  21. @Test
  22. public void testDecomposePredicate() throws SerDeException {
  23. BSONSerDe serde = new BSONSerDe();
  24. Configuration conf = new Configuration();
  25. Properties tableProperties = new Properties();
  26. // Set table columns.
  27. tableProperties.setProperty(
  28. serdeConstants.LIST_COLUMNS, "id,i,j");
  29. tableProperties.setProperty(
  30. serdeConstants.LIST_COLUMN_TYPES, "string,int,int");
  31. serde.initialize(conf, tableProperties);
  32. // Build a query.
  33. // WHERE i > 20
  34. GenericUDFOPGreaterThan gt = new GenericUDFOPGreaterThan();
  35. ExprNodeDesc[] children = {
  36. new ExprNodeColumnDesc(new SimpleMockColumnInfo("i")),
  37. new ExprNodeConstantDesc(20)
  38. };
  39. ExprNodeGenericFuncDesc expr = new ExprNodeGenericFuncDesc(
  40. TypeInfoFactory.booleanTypeInfo,
  41. gt,
  42. Arrays.asList(children));
  43. HiveStoragePredicateHandler.DecomposedPredicate decomposed =
  44. msh.decomposePredicate(null, serde, expr);
  45. assertNull(decomposed.residualPredicate);
  46. assertEquals(
  47. expr.getExprString(),
  48. decomposed.pushedPredicate.getExprString());
  49. }
  50. @Test
  51. public void testDecomposePredicateUnrecognizedOps() throws SerDeException {
  52. BSONSerDe serde = new BSONSerDe();
  53. Configuration conf = new Configuration();
  54. Properties tableProperties = new Properties();
  55. // Set table columns.
  56. tableProperties.setProperty(
  57. serdeConstants.LIST_COLUMNS, "id,i,j");
  58. tableProperties.setProperty(
  59. serdeConstants.LIST_COLUMN_TYPES, "string,int,int");
  60. serde.initialize(conf, tableProperties);
  61. // Build a query.
  62. // WHERE i > 20 AND j IS BETWEEN 1 AND 10
  63. GenericUDFOPGreaterThan gt = new GenericUDFOPGreaterThan();
  64. ExprNodeDesc[] children = {
  65. new ExprNodeColumnDesc(new SimpleMockColumnInfo("i")),
  66. new ExprNodeConstantDesc(20)
  67. };
  68. ExprNodeGenericFuncDesc iGt20 = new ExprNodeGenericFuncDesc(
  69. TypeInfoFactory.booleanTypeInfo,
  70. gt,
  71. Arrays.asList(children));
  72. GenericUDFBetween between = new GenericUDFBetween();
  73. ExprNodeDesc[] betweenChildren = {
  74. new ExprNodeConstantDesc(false),
  75. new ExprNodeColumnDesc(new SimpleMockColumnInfo("j")),
  76. new ExprNodeConstantDesc(1),
  77. new ExprNodeConstantDesc(10)
  78. };
  79. ExprNodeGenericFuncDesc jBetween1And10 = new ExprNodeGenericFuncDesc(
  80. TypeInfoFactory.booleanTypeInfo,
  81. between,
  82. Arrays.asList(betweenChildren));
  83. ExprNodeDesc[] exprChildren = {
  84. iGt20,
  85. jBetween1And10
  86. };
  87. ExprNodeGenericFuncDesc expr = new ExprNodeGenericFuncDesc(
  88. TypeInfoFactory.booleanTypeInfo,
  89. new GenericUDFOPAnd(),
  90. Arrays.asList(exprChildren));
  91. HiveStoragePredicateHandler.DecomposedPredicate decomposed =
  92. msh.decomposePredicate(null, serde, expr);
  93. assertEquals(
  94. jBetween1And10.getExprString(),
  95. decomposed.residualPredicate.getExprString());
  96. assertEquals(
  97. iGt20.getExprString(),
  98. decomposed.pushedPredicate.getExprString());
  99. }
  100. }