aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/golden/udf_repeat-2-836be47190989d8975a09a545ecbfe0b
blob: 4f4b491b2807c44fe59b64d5b8a819c3f29e294e (plain) (blame)
1
2
3
4
repeat(str, n) - repeat str n times 
Example:
  > SELECT repeat('123', 2) FROM src LIMIT 1;
  '123123'