Use druid-api 0.1.2-SNAPSHOT which provides Row.getRaw()

This commit is contained in:
daggerrz 2013-10-20 22:39:13 -04:00
parent a684885839
commit 522feb65d5
3 changed files with 12 additions and 1 deletions

View File

@ -60,7 +60,7 @@
<dependency>
<groupId>io.druid</groupId>
<artifactId>druid-api</artifactId>
<version>0.1.1</version>
<version>0.1.2-SNAPSHOT</version>
</dependency>
<!-- Compile Scope -->

View File

@ -133,6 +133,11 @@ public class SpatialDimensionRowFormatter
return (retVal == null) ? row.getDimension(dimension) : retVal;
}
@Override
public Object getRaw(String dimension) {
return row.getRaw(dimension);
}
@Override
public float getFloatMetric(String metric)
{

View File

@ -209,6 +209,12 @@ class WikipediaIrcDecoder implements IrcDecoder
}
}
@Override
public Object getRaw(String dimension) {
return dimensions.get(dimension);
}
@Override
public float getFloatMetric(String metric)
{