RPAD
Pads a string on the right to a specified length with a fill string.
Analyze Syntax
func.rpad(<str>, <len>, <pad>)
Analyze Examples
func.rpad('hello', 10, '.')
┌──────────────┐
│ 'hello.....' │
└──────────────┘
SQL Syntax
RPAD(<str>, <len>, <pad>)
SQL Examples
SELECT RPAD('hello', 10, '.');
┌────────────┐
│ hello..... │
└────────────┘