* @param left Expression which lays at the left of the operator.
* @param right Expression which lays at the right of the operator.
* @return case insensitive like operator.
*/
public static DualOperator newLikeCI(ExpressionAPI left, ExpressionAPI right) {
return new Ilike(left, right);
}