Saving all output to "!!{outputDirectory}!!/show_describe_func_quotes.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/show_describe_func_quotes.q >>> SHOW FUNCTIONS 'concat'; 'tab_name' 'concat' 1 row selected >>> >>> SHOW FUNCTIONS concat; 'tab_name' 'concat' 1 row selected >>> >>> DESCRIBE FUNCTION 'concat'; 'tab_name' 'concat(str1, str2, ... strN) - returns the concatenation of str1, str2, ... strN or concat(bin1, bin2, ... binN) - returns the concatenation of bytes in binary data bin1, bin2, ... binN' 1 row selected >>> >>> DESCRIBE FUNCTION concat; 'tab_name' 'concat(str1, str2, ... strN) - returns the concatenation of str1, str2, ... strN or concat(bin1, bin2, ... binN) - returns the concatenation of bytes in binary data bin1, bin2, ... binN' 1 row selected >>> !record