diff --git ql/src/test/org/apache/hadoop/hive/ql/io/parquet/TestHiveSchemaConverter.java ql/src/test/org/apache/hadoop/hive/ql/io/parquet/TestHiveSchemaConverter.java index 7600d3bc2ef9144ae3e7769c238d9b3f22419c3d..e1b2ba10212cae92f7df6d999b8eddfc8b2b7d4a 100644 --- ql/src/test/org/apache/hadoop/hive/ql/io/parquet/TestHiveSchemaConverter.java +++ ql/src/test/org/apache/hadoop/hive/ql/io/parquet/TestHiveSchemaConverter.java @@ -141,8 +141,8 @@ public void testMap() throws Exception { "message hive_schema {\n" + " optional group mapCol (MAP) {\n" + " repeated group map (MAP_KEY_VALUE) {\n" - + " required binary key;\n" - + " optional binary value;\n" + + " required binary key (UTF8);\n" + + " optional binary value (UTF8);\n" + " }\n" + " }\n" + "}\n"); @@ -155,7 +155,7 @@ public void testMapDecimal() throws Exception { "message hive_schema {\n" + " optional group mapCol (MAP) {\n" + " repeated group map (MAP_KEY_VALUE) {\n" - + " required binary key;\n" + + " required binary key (UTF8);\n" + " optional fixed_len_byte_array(3) value (DECIMAL(5,2));\n" + " }\n" + " }\n"