mirror of https://github.com/apache/druid.git
update druid-api for json parsing improvements
This commit is contained in:
parent
f1d37d569c
commit
30183d3b4d
2
pom.xml
2
pom.xml
|
@ -41,7 +41,7 @@
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<metamx.java-util.version>0.26.8</metamx.java-util.version>
|
<metamx.java-util.version>0.26.8</metamx.java-util.version>
|
||||||
<apache.curator.version>2.6.0</apache.curator.version>
|
<apache.curator.version>2.6.0</apache.curator.version>
|
||||||
<druid.api.version>0.2.11</druid.api.version>
|
<druid.api.version>0.2.12</druid.api.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
|
|
@ -69,7 +69,8 @@ public class ProtoBufInputRowParser implements ByteBufferInputRowParser
|
||||||
if (parseSpec == null) {
|
if (parseSpec == null) {
|
||||||
this.parseSpec = new JSONParseSpec(
|
this.parseSpec = new JSONParseSpec(
|
||||||
timestampSpec,
|
timestampSpec,
|
||||||
new DimensionsSpec(dimensions, dimensionExclusions, spatialDimensions)
|
new DimensionsSpec(dimensions, dimensionExclusions, spatialDimensions),
|
||||||
|
JSONParseSpec.JSON
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
this.parseSpec = parseSpec;
|
this.parseSpec = parseSpec;
|
||||||
|
|
|
@ -59,7 +59,8 @@ public class ProtoBufInputRowParserTest
|
||||||
ProtoBufInputRowParser parser = new ProtoBufInputRowParser(
|
ProtoBufInputRowParser parser = new ProtoBufInputRowParser(
|
||||||
new JSONParseSpec(
|
new JSONParseSpec(
|
||||||
new TimestampSpec("timestamp", "iso"),
|
new TimestampSpec("timestamp", "iso"),
|
||||||
new DimensionsSpec(Arrays.asList(DIMENSIONS), Arrays.<String>asList(), null)
|
new DimensionsSpec(Arrays.asList(DIMENSIONS), Arrays.<String>asList(), null),
|
||||||
|
JSONParseSpec.JSON
|
||||||
),
|
),
|
||||||
"prototest.desc",
|
"prototest.desc",
|
||||||
null, null, null, null
|
null, null, null, null
|
||||||
|
|
|
@ -61,7 +61,8 @@ public class FireDepartmentTest
|
||||||
Arrays.asList("dim1", "dim2"),
|
Arrays.asList("dim1", "dim2"),
|
||||||
null,
|
null,
|
||||||
null
|
null
|
||||||
)
|
),
|
||||||
|
JSONParseSpec.JSON
|
||||||
),
|
),
|
||||||
null, null, null, null
|
null, null, null, null
|
||||||
),
|
),
|
||||||
|
|
|
@ -123,7 +123,11 @@ public class RealtimePlumberSchoolTest
|
||||||
@Override
|
@Override
|
||||||
public ParseSpec getParseSpec()
|
public ParseSpec getParseSpec()
|
||||||
{
|
{
|
||||||
return new JSONParseSpec(new TimestampSpec("timestamp", "auto"), new DimensionsSpec(null, null, null));
|
return new JSONParseSpec(
|
||||||
|
new TimestampSpec("timestamp", "auto"),
|
||||||
|
new DimensionsSpec(null, null, null),
|
||||||
|
JSONParseSpec.JSON
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue