Saving all output to "!!{outputDirectory}!!/udf_xpath_long.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/udf_xpath_long.q >>> DESCRIBE FUNCTION xpath_long ; 'tab_name' 'xpath_long(xml, xpath) - Returns a long value that matches the xpath expression' 1 row selected >>> DESCRIBE FUNCTION EXTENDED xpath_long ; 'tab_name' 'xpath_long(xml, xpath) - Returns a long value that matches the xpath expression' 'Example:' ' > SELECT xpath_long('12','sum(a/b)') FROM src LIMIT 1;' ' 3' 4 rows selected >>> >>> SELECT xpath_long ('this is not a number', 'a') FROM src LIMIT 1 ; '_c0' '0' 1 row selected >>> SELECT xpath_long ('this 2 is not a number', 'a') FROM src LIMIT 1 ; '_c0' '0' 1 row selected >>> SELECT xpath_long ('200000000040000000000', 'a/b * a/c') FROM src LIMIT 1 ; '_c0' '9223372036854775807' 1 row selected >>> SELECT xpath_long ('try a boolean', 'a = 10') FROM src LIMIT 1 ; '_c0' '0' 1 row selected >>> SELECT xpath_long ('1248', 'a/b') FROM src LIMIT 1 ; '_c0' '1' 1 row selected >>> SELECT xpath_long ('1248', 'sum(a/*)') FROM src LIMIT 1 ; '_c0' '15' 1 row selected >>> SELECT xpath_long ('1248', 'sum(a/b)') FROM src LIMIT 1 ; '_c0' '7' 1 row selected >>> SELECT xpath_long ('1248', 'sum(a/b[@class="odd"])') FROM src LIMIT 1 ; '_c0' '5' 1 row selected >>> !record