Re: Yet another date format problem

2010-10-12 Thread Lance Norskog
2007-06-19 09:08:48 Solr's input format is '2007-06-19T09:08:48Z'. More to the point: you are creating a string and passing that in. The date type will accept this, but the DIH has code to accept Java JDBC datetime values directly. So, in your select you want to somehow cast your field data

Re: Yet another date format problem

2010-10-12 Thread Erick Erickson
Hmmm. If this is a Solr date, then these are not in a proper Solr date format, see: http://lucene.apache.org/solr/api/org/apache/solr/schema/DateField.html Solr took the path of eliminating all the fuzziness about times and #requiring# that all dates be in Zulu time since that's unambiguous. Or at