You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
scalar_function!(ascii,Ascii,"Returns the numeric code of the first character of the argument. In UTF8 encoding, returns the Unicode code point of the character. In other multibyte encodings, the argument must be an ASCII character.");
202
203
scalar_function!(asin,Asin);
204
+
scalar_function!(asinh,Asinh);
203
205
scalar_function!(atan,Atan);
206
+
scalar_function!(atanh,Atanh);
204
207
scalar_function!(atan2,Atan2);
205
208
scalar_function!(
206
209
bit_length,
207
210
BitLength,
208
211
"Returns number of bits in the string (8 times the octet_length)."
209
212
);
210
213
scalar_function!(btrim,Btrim,"Removes the longest string containing only characters in characters (a space by default) from the start and end of string.");
scalar_function!(chr,Chr,"Returns the character with the given code.");
220
224
scalar_function!(coalesce,Coalesce);
221
225
scalar_function!(cos,Cos);
226
+
scalar_function!(cosh,Cosh);
227
+
scalar_function!(degrees,Degrees);
222
228
scalar_function!(exp,Exp);
229
+
scalar_function!(factorial,Factorial);
223
230
scalar_function!(floor,Floor);
231
+
scalar_function!(gcd,Gcd);
224
232
scalar_function!(initcap,InitCap,"Converts the first letter of each word to upper case and the rest to lower case. Words are sequences of alphanumeric characters separated by non-alphanumeric characters.");
233
+
scalar_function!(lcm,Lcm);
225
234
scalar_function!(left,Left,"Returns first n characters in the string, or when n is negative, returns all but last |n| characters.");
226
235
scalar_function!(ln,Ln);
227
236
scalar_function!(log,Log);
@@ -235,9 +244,16 @@ scalar_function!(
235
244
MD5,
236
245
"Computes the MD5 hash of the argument, with the result written in hexadecimal."
237
246
);
247
+
scalar_function!(
248
+
nanvl,
249
+
Nanvl,
250
+
"Computes the MD5 hash of the argument, with the result written in hexadecimal."
251
+
);
238
252
scalar_function!(octet_length,OctetLength,"Returns number of bytes in the string. Since this version of the function accepts type character directly, it will not strip trailing spaces.");
scalar_function!(strpos,Strpos,"Returns starting index of specified substring within string, or zero if it's not present. (Same as position(substring in string), but note the reversed argument order.)");
0 commit comments