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
Adds a pair of strings or numbers. Adds a date to a number of days. Adds a duration to a timestamp. Appends one array of similar type to another. Same as the + operator
35
+
Adds a pair of strings or numbers. Adds a date to a number of days. Adds a duration to a timestamp. Appends one array of similar type to another. Same as the + operator
36
36
*``add(10, 20) -> 30``
37
37
*``10 + 20 -> 30``
38
38
*``add('ice', 'cream') -> 'icecream'``
@@ -44,39 +44,39 @@ Adds a pair of strings or numbers. Adds a date to a number of days. Adds a durat
44
44
___
45
45
### <code>addDays</code>
46
46
<code><b>addDays(<i><date/timestamp></i> : datetime, <i><days to add></i> : integral) => datetime</b></code><br/><br/>
47
-
Add days to a date or timestamp. Same as the + operator for date
47
+
Add days to a date or timestamp. Same as the + operator for date
Selects a column value by name in the stream. You can pass a optional stream name as the second argument. If there are multiple matches, the first match is returned. If no match it returns a NULL value. The returned value has to be type converted by one of the type conversion functions(TO_DATE, TO_STRING ...). Column names known at design time should be addressed just by their name. Computed inputs are not supported but you can use parameter substitutions
79
+
Selects a column value by name in the stream. You can pass a optional stream name as the second argument. If there are multiple matches, the first match is returned. If no match it returns a NULL value. The returned value has to be type converted by one of the type conversion functions(TO_DATE, TO_STRING ...). Column names known at design time should be addressed just by their name. Computed inputs are not supported but you can use parameter substitutions
0 commit comments