Prado\Data\Common\Mysql\TMysqlMetaData::isPrecisionType PHP Метод

isPrecisionType() защищенный Метод

protected isPrecisionType ( $type ) : boolean
Результат boolean true if column type if "numeric", "interval" or begins with "time".
    protected function isPrecisionType($type)
    {
        $type = strtolower(trim($type));
        return $type === 'decimal' || $type === 'dec' || $type === 'float' || $type === 'double' || $type === 'double precision' || $type === 'real';
    }