druid/extensions-contrib/orc-extensions
praveev 52a74cf84f Use timestamp in millis as Map key instead of DateTime object (#3674)
* Use Long timestamp as key instead of DateTime.

DateTime representation is screwed up when you store with an obj
and read with a different DateTime obj.

For example: The code below fails when you use DateTime as key
```
        DateTime odt = DateTime.now(DateTimeUtils.getZone(DateTimeZone.forID("America/Los_Angeles")));
        HashMap<DateTime, String> map = new HashMap<>();
        map.put(odt, "abc");
        DateTime dt = new DateTime(odt.getMillis());
        System.out.println(map.get(dt));
```

* Respect timezone when creating the file.

* Update docs with timezone caveat in granularity spec

* Remove unused imports
2016-11-11 10:20:20 -08:00
..
example Hadoop InputRowParser for Orc file (#3019) 2016-07-26 09:42:56 -07:00
src Use timestamp in millis as Map key instead of DateTime object (#3674) 2016-11-11 10:20:20 -08:00
pom.xml Bump versions to 0.9.3-SNAPSHOT (#3524) 2016-09-29 13:53:32 -07:00