aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/golden/udf_locate-2-d9b5934457931447874d6bb7c13de478
blob: 092e12586b9e8c394d9c35480dc3a8338c5e92db (plain) (blame)
1
2
3
4
locate(substr, str[, pos]) - Returns the position of the first occurance of substr in str after position pos
Example:
  > SELECT locate('bar', 'foobarbar', 5) FROM src LIMIT 1;
  7