return correct valueType

This commit is contained in:
nishantmonu51 2014-08-13 18:34:00 +05:30
parent 6f60a3f604
commit 0b42ca4c75
2 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ public class CountAggregatorFactory implements AggregatorFactory
@Override
public String getTypeName()
{
return "long";
return valueType;
}
@Override

View File

@ -139,7 +139,7 @@ public class LongSumAggregatorFactory implements AggregatorFactory
@Override
public String getTypeName()
{
return "long";
return valueType;
}
@Override