Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
rpad in datafusion::functions::unicode::rpad - Rust
[go: Go Back, main page]

Function datafusion::functions::unicode::rpad::rpad

source ·
pub fn rpad<T>(
    args: &[Arc<dyn Array>],
) -> Result<Arc<dyn Array>, DataFusionError>
where T: OffsetSizeTrait,
Expand description

Extends the string to length ‘length’ by appending the characters fill (a space by default). If the string is already longer than length then it is truncated. rpad(‘hi’, 5, ‘xy’) = ‘hixyx’