N°3660 - Fix JOIN without condition on child joined table is ignored

This commit is contained in:
Eric
2021-02-02 17:30:03 +01:00
parent 37a4a3eb47
commit bc024d9ed0
3 changed files with 75 additions and 0 deletions

View File

@@ -2602,5 +2602,18 @@ class DBObjectSearch extends DBSearch
return $oExpression;
}
/**
* @param array $aAttCodes array of attCodes to search into
* @param string $sNeedle one word to be searched
*
* @throws \CoreException
*/
public function AddCondition_FullTextOnAttributes(array $aAttCodes, $sNeedle)
{
}
public function ListParameters()
{
return $this->GetCriteria()->ListParameters();
}
}