ASCII(str) Returns the ASCII code value of the leftmost character of the string str.
virtual ORowSetValue operate(const ORowSetValue &lhs) const override
LENGTH(str) OCTET_LENGTH(str) CHAR_LENGTH(str) CHARACTER_LENGTH(str) Returns the length of the string...
virtual ORowSetValue operate(const ORowSetValue &lhs) const override
CHAR(N,...) CHAR() interprets the arguments as integers and returns a string consisting of the charac...
virtual ORowSetValue operate(const std::vector< ORowSetValue > &lhs) const override
CONCAT(str1,str2,...) Returns the string that results from concatenating the arguments.
virtual ORowSetValue operate(const std::vector< ORowSetValue > &lhs) const override
INSERT(str,pos,len,newstr) Returns the string str, with the substring beginning at position pos and l...
virtual ORowSetValue operate(const std::vector< ORowSetValue > &lhs) const override
LTRIM(str) Returns the string str with leading space characters removed:
virtual ORowSetValue operate(const ORowSetValue &lhs) const override
LEFT(str,len) Returns the leftmost len characters from the string str:
virtual ORowSetValue operate(const ORowSetValue &lhs, const ORowSetValue &rhs) const override
LOCATE(substr,str) POSITION(substr IN str) Returns the position of the first occurrence of substring ...
virtual ORowSetValue operate(const std::vector< ORowSetValue > &lhs) const override
LCASE(str) LOWER(str) Returns the string str with all characters changed to lowercase according to th...
virtual ORowSetValue operate(const ORowSetValue &lhs) const override
RTRIM(str) Returns the string str with trailing space characters removed:
virtual ORowSetValue operate(const ORowSetValue &lhs) const override
REPEAT(str,count) Returns a string consisting of the string str repeated count times.
virtual ORowSetValue operate(const ORowSetValue &lhs, const ORowSetValue &rhs) const override
REPLACE(str,from_str,to_str) Returns the string str with all occurrences of the string from_str repla...
virtual ORowSetValue operate(const std::vector< ORowSetValue > &lhs) const override
RIGHT(str,len) Returns the rightmost len characters from the string str:
virtual ORowSetValue operate(const ORowSetValue &lhs, const ORowSetValue &rhs) const override
SPACE(N) Returns a string consisting of N space characters:
virtual ORowSetValue operate(const ORowSetValue &lhs) const override
SUBSTRING(str,pos) SUBSTRING(str FROM pos) Returns a substring from string str starting at position p...
virtual ORowSetValue operate(const std::vector< ORowSetValue > &lhs) const override
UCASE(str) UPPER(str) Returns the string str with all characters changed to uppercase according to th...
virtual ORowSetValue operate(const ORowSetValue &lhs) const override