@Override
 public RelDataType inferReturnType(SqlOperatorBinding opBinding) {
   RelDataType type =
       getComponentType(opBinding.getTypeFactory(), opBinding.collectOperandTypes());
   if (null == type) {
     return null;
   }
   return SqlTypeUtil.createArrayType(opBinding.getTypeFactory(), type, false);
 }