aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/golden/udf_xpath_long-2-43fbf4d944cf7eaf57b4d6166b803fb6
blob: b9eb5a4a99c02739e8ec187a2ee8b9194f7c5684 (plain) (blame)
1
2
3
4
xpath_long(xml, xpath) - Returns a long value that matches the xpath expression
Example:
  > SELECT xpath_long('<a><b>1</b><b>2</b></a>','sum(a/b)') FROM src LIMIT 1;
  3