if (null == termBoolQ) {
termBoolQ = QueryBuilders.boolQuery();
}
sQueryTerm.append(" OR ").append(sFieldName).append(":$manual_aliases");
termBoolQ = termBoolQ.should(QueryBuilders.termQuery(sFieldName, qt.entity));
termQ = termBoolQ = termBoolQ.should(QueryBuilders.termsQuery(sFieldName, masterAlias.getAlias().toArray()));
// If want to add manual aliases as full text also...
if ((null != qt.entityOpt) && qt.entityOpt.rawText) {
if (null == this._extraFullTextTerms) {
_extraFullTextTerms = new LinkedList<AdvancedQueryPojo.QueryTermPojo>();