Skip to content

Commit d71db9e

Browse files
committed
Rename Variable
1 parent 2209466 commit d71db9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ql/src/test/org/apache/hadoop/hive/ql/io/parquet/VectorizedColumnReaderTestBase.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,12 +317,12 @@ protected static void writeData(ParquetWriter<Group> writer, boolean isDictionar
317317
g.addGroup("nsf").append("c", intVal).append("d", intVal);
318318
g.append("e", doubleVal);
319319

320-
Group some_null_g = group.addGroup("struct_field_some_null");
320+
Group struct_field_with_null = group.addGroup("struct_field_some_null");
321321
if (i % 2 != 0) {
322-
some_null_g.append("f", intVal);
322+
struct_field_with_null.append("f", intVal);
323323
}
324324
if (i % 3 != 0) {
325-
some_null_g.append("g", doubleVal);
325+
struct_field_with_null.append("g", doubleVal);
326326
}
327327

328328
Group mapGroup = group.addGroup("map_field");

0 commit comments

Comments
 (0)