Saving all output to "!!{outputDirectory}!!/udf_xpath_float.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/udf_xpath_float.q >>> DESCRIBE FUNCTION xpath_float ; 'tab_name' 'xpath_float(xml, xpath) - Returns a float value that matches the xpath expression' 1 row selected >>> DESCRIBE FUNCTION EXTENDED xpath_float ; 'tab_name' 'xpath_float(xml, xpath) - Returns a float value that matches the xpath expression' 'Example:' ' > SELECT xpath_float('12','sum(a/b)') FROM src LIMIT 1;' ' 3.0' 4 rows selected >>> >>> SELECT xpath_float ('this is not a number', 'a') FROM src LIMIT 1 ; '_c0' 'NaN' 1 row selected >>> SELECT xpath_float ('this 2 is not a number', 'a') FROM src LIMIT 1 ; '_c0' 'NaN' 1 row selected >>> SELECT xpath_float ('200000000040000000000', 'a/b * a/c') FROM src LIMIT 1 ; '_c0' '7.999999984405158E19' 1 row selected >>> SELECT xpath_float ('try a boolean', 'a = 10') FROM src LIMIT 1 ; '_c0' '0.0' 1 row selected >>> SELECT xpath_float ('1248', 'a/b') FROM src LIMIT 1 ; '_c0' '1.0' 1 row selected >>> SELECT xpath_float ('1248', 'sum(a/*)') FROM src LIMIT 1 ; '_c0' '15.0' 1 row selected >>> SELECT xpath_float ('1248', 'sum(a/b)') FROM src LIMIT 1 ; '_c0' '7.0' 1 row selected >>> SELECT xpath_float ('1248', 'sum(a/b[@class="odd"])') FROM src LIMIT 1 ; '_c0' '5.0' 1 row selected >>> !record