Make FieldProperties bit masks protected
----------------------------------------
Key: SOLR-2433
URL: https://issues.apache.org/jira/browse/SOLR-2433
Project: Solr
Issue Type: Improvement
Reporter: Ryan McKinley
Priority: Trivial
Fix For: 4.0
bit mask values are now package protected, so we have to duplicate:
{code:java}
final static int INDEXED = 0x00000001;
final static int TOKENIZED = 0x00000002;
final static int STORED = 0x00000004;
final static int BINARY = 0x00000008;
final static int OMIT_NORMS = 0x00000010;
...
{code}
to set these fields explicitly. This is important for complex fields like
LatLonType and poly fields in general
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]