Seconds since Epoch and 'numeric_resolution'

'numeric_resolution' fix, seen here :
https://github.com/jpountz/elasticsearch/commit/351bab5ff6c176114b8a68398a19aec64a8c933c

was supposed to allow date_time to accept "seconds since epoch" style timestamps and treat them as date objects. Looking through the test case, I expected this to work with the below mapping, but everything comes back as 1/1/1970, so I'm guessing it's not working.

I tested this on 1.5.2. Is it included in that patch release?

Mapping example:

"properties": {
    "time_stamp":
        {
            "type": "date",
            "format": "date_time",
            "numeric_resolution": "seconds"
        },

Thoughts?

Looks like this fix isn't scheduled until 1.6.0: https://github.com/elastic/elasticsearch/pull/10420

If that's so, never mind. I was under the impression it was in 1.5.2.

It will be in 1.6.0 indeed.