mirror of https://github.com/apache/druid.git
Merge pull request #2474 from CHOIJAEHONG1/support-alphanumeric-dimensional-sort-in-gropu-by
delete System.out.println() in test code (#2474)
This commit is contained in:
commit
e60fc1b7f1
|
@ -1671,7 +1671,7 @@ public class GroupByQueryRunnerTest
|
|||
.setDimensions(
|
||||
Lists.<DimensionSpec>newArrayList(
|
||||
new ExtractionDimensionSpec(
|
||||
"quality", "alias", new LookupExtractionFn(new MapLookupExtractor(map), false, null, false, false), null
|
||||
"quality", "alias", new LookupExtractionFn(new MapLookupExtractor(map, false), false, null, false, false), null
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
|
@ -72,8 +72,6 @@ public class GroupByQueryTest
|
|||
String json = jsonMapper.writeValueAsString(query);
|
||||
Query serdeQuery = jsonMapper.readValue(json, Query.class);
|
||||
|
||||
System.out.println(json);
|
||||
|
||||
Assert.assertEquals(query, serdeQuery);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue