mirror of https://github.com/apache/druid.git
fix lowercase bug
This commit is contained in:
parent
7f43f37441
commit
d29b3e0960
|
@ -209,7 +209,7 @@ public class HadoopDruidIndexerConfig
|
|||
)
|
||||
{
|
||||
this.dataSource = dataSource;
|
||||
this.timestampColumnName = timestampColumnName;
|
||||
this.timestampColumnName = timestampColumnName.toLowerCase();
|
||||
this.timestampFormat = timestampFormat;
|
||||
this.dataSpec = dataSpec;
|
||||
this.granularitySpec = granularitySpec;
|
||||
|
@ -294,7 +294,7 @@ public class HadoopDruidIndexerConfig
|
|||
|
||||
public void setTimestampColumnName(String timestampColumnName)
|
||||
{
|
||||
this.timestampColumnName = timestampColumnName;
|
||||
this.timestampColumnName = timestampColumnName.toLowerCase();
|
||||
}
|
||||
|
||||
@JsonProperty()
|
||||
|
|
Loading…
Reference in New Issue