public function selectCompatible($datatype)
 {
     if ($datatype === IntegerDataTypeHandler::$DATA_TYPE || $datatype === NumberDataTypeHandler::$DATA_TYPE) {
         return $datatype;
     }
     return parent::selectCompatible($datatype);
 }
    public function selectCompatible($datatype) {
        if ($datatype == ArrayDataTypeHandler::DATA_TYPE) {
            return $datatype;
        }

        return parent::selectCompatible($datatype);
    }