mirror of https://github.com/apache/druid.git
Merge pull request #620 from metamx/more-tostring
add toString method for JavascriptDimExtractionFn
This commit is contained in:
commit
e3ee06b80f
|
@ -98,4 +98,12 @@ public class JavascriptDimExtractionFn implements DimExtractionFn
|
|||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "JavascriptDimExtractionFn{" +
|
||||
"function='" + function + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue