Index: lucene/src/site/src/documentation/content/xdocs/fileformats.xml =================================================================== --- lucene/src/site/src/documentation/content/xdocs/fileformats.xml (revision 1099514) +++ lucene/src/site/src/documentation/content/xdocs/fileformats.xml (working copy) @@ -90,6 +90,9 @@
In version 3.1, segments records the code version that created them. See LUCENE-2720 for details. + + Additionally segments track explicitly whether or + not they have term vectors. See LUCENE-2811 for details.
@@ -935,7 +938,7 @@ 3.1 Segments --> Format, Version, NameCounter, SegCount, <SegVersion, SegName, SegSize, DelGen, DocStoreOffset, [DocStoreSegment, DocStoreIsCompoundFile], HasSingleNormFile, NumField, NormGenNumField, - IsCompoundFile, DeletionCount, HasProx, Diagnostics>SegCount, CommitUserData, Checksum + IsCompoundFile, DeletionCount, HasProx, Diagnostics, HasVectors>SegCount, CommitUserData, Checksum@@ -957,7 +960,7 @@
IsCompoundFile, HasSingleNormFile, - DocStoreIsCompoundFile, HasProx --> Int8 + DocStoreIsCompoundFile, HasProx, HasVectors --> Int8
@@ -1083,6 +1086,10 @@ Lucene version, OS, Java version, why the segment was created (merge, flush, addIndexes), etc.
+ +HasVectors is 1 if this segment stores term vectors, + else it's 0. +