Closed GoogleCodeExporter closed 9 years ago
I'm also seeing this... I have the .prx index, but can't view it in Luke
Original comment by seanphur...@gmail.com
on 16 Jul 2010 at 3:31
I'm hitting this as well. As a workaround, you can use "Reconstruct & Edit" to
see all of the fields, but this less than optimal.
Original comment by d...@missingmass.com
on 5 Apr 2011 at 5:46
Great tool, but this bug was keeping me from the main use that I wanted it for
so I tracked it down. The bug is on line 2514 of Luke.java for the 3.5.0
source.
for (int i = 0; i < idxFields.length; i++) {
Fieldable[] fields = doc.getFieldables(idxFields[i]);
--> if (fields == null) {
addFieldRow(table, idxFields[i], null, docid);
doc.getFieldables returns an empty array when the field isn't stored, never
null(doc.getFieldable returns null) So the line should be
if (fields.length == 0) {
I tested this change and it seemed to work ok.
Original comment by doug.ba...@gmail.com
on 21 Feb 2012 at 1:47
any updates? (bug is still in 4-alpha)
Original comment by khame...@gmail.com
on 25 Jul 2012 at 3:44
I fixed this now in trunk rev. 85 - thank you for your patience. For now,
please build a binary yourself, this fix will be included in the next
maintenance version.
Original comment by sig...@gmail.com
on 25 Jul 2012 at 10:22
many thanks, indeed the problematic field is now appeared, ...but still no way
to look into its content: <not present or not stored>. Hm, perhaps one should
use "reconstruct" for such fields...
Original comment by khame...@gmail.com
on 25 Jul 2012 at 10:35
If this field in this particular doc indeed has a term vector stored then you
should be able to see it .. can you please build a tiny index that would
exhibit this problem and attach it here?
Original comment by sig...@gmail.com
on 25 Jul 2012 at 10:45
Original issue reported on code.google.com by
thePanz@gmail.com
on 30 Jun 2010 at 1:55