Skip to content

Commit

Permalink
fix old usage of dimension as string instead of dimensionSchema in Da…
Browse files Browse the repository at this point in the history
…taSchema (apache#3365)
  • Loading branch information
kaijianding authored and fjy committed Aug 16, 2016
1 parent ed924bf commit eafafce
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -113,7 +113,7 @@ public InputRowParser getParser()
// exclude timestamp from dimensions by default, unless explicitly included in the list of dimensions
if (timestampSpec != null) {
final String timestampColumn = timestampSpec.getTimestampColumn();
if (!(dimensionsSpec.hasCustomDimensions() && dimensionsSpec.getDimensions().contains(timestampColumn))) {
if (!(dimensionsSpec.hasCustomDimensions() && dimensionsSpec.getDimensionNames().contains(timestampColumn))) {
dimensionExclusions.add(timestampColumn);
}
}
Expand Down

0 comments on commit eafafce

Please sign in to comment.