Skip to content

Commit 1422bc0

Browse files
authored
C189395 Adding Hard Breaks before code
This PR complements this one #108486
1 parent 522ea08 commit 1422bc0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/data-factory/data-flow-expression-functions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Selects a column value by name in the stream. You can pass a optional stream nam
8686
___
8787
### <code>byPosition</code>
8888
<code><b>byPosition(<i>&lt;position&gt;</i> : integer) => any</b></code><br/><br/>
89-
Selects a column value by its relative position(1 based) in the stream. If the position is out of bounds it returns a NULL value. The returned value has to be type converted by one of the type conversion functions(TO_DATE, TO_STRING ...)Computed inputs are not supported but you can use parameter substitutions
89+
Selects a column value by its relative position(1 based) in the stream. If the position is out of bounds it returns a NULL value. The returned value has to be type converted by one of the type conversion functions(TO_DATE, TO_STRING ...)Computed inputs are not supported but you can use parameter substitutions
9090
* ``toString(byPosition(1))``
9191
* ``toDecimal(byPosition(2), 10, 2)``
9292
* ``toBoolean(byName(4))``
@@ -95,38 +95,38 @@ Selects a column value by its relative position(1 based) in the stream. If the p
9595
___
9696
### <code>case</code>
9797
<code><b>case(<i>&lt;condition&gt;</i> : boolean, <i>&lt;true_expression&gt;</i> : any, <i>&lt;false_expression&gt;</i> : any, ...) => any</b></code><br/><br/>
98-
Based on alternating conditions applies one value or the other. If the number of inputs are even, the other is defaulted to NULL for last condition
98+
Based on alternating conditions applies one value or the other. If the number of inputs are even, the other is defaulted to NULL for last condition
9999
* ``case(10 + 20 == 30, 'dumbo', 'gumbo') -> 'dumbo'``
100100
* ``case(10 + 20 == 25, 'bojjus', 'do' < 'go', 'gunchus') -> 'gunchus'``
101101
* ``isNull(case(10 + 20 == 25, 'bojjus', 'do' > 'go', 'gunchus')) -> true``
102102
* ``case(10 + 20 == 25, 'bojjus', 'do' > 'go', 'gunchus', 'dumbo') -> 'dumbo'``
103103
___
104104
### <code>cbrt</code>
105105
<code><b>cbrt(<i>&lt;value1&gt;</i> : number) => double</b></code><br/><br/>
106-
Calculate the cube root of a number
106+
Calculate the cube root of a number
107107
* ``cbrt(8) -> 2.0``
108108
___
109109
### <code>ceil</code>
110110
<code><b>ceil(<i>&lt;value1&gt;</i> : number) => number</b></code><br/><br/>
111-
Returns the smallest integer not smaller than the number
111+
Returns the smallest integer not smaller than the number
112112
* ``ceil(-0.1) -> 0``
113113
___
114114
### <code>coalesce</code>
115115
<code><b>coalesce(<i>&lt;value1&gt;</i> : any, ...) => any</b></code><br/><br/>
116-
Returns the first not null value from a set of inputs. All inputs should be of the same type
116+
Returns the first not null value from a set of inputs. All inputs should be of the same type
117117
* ``coalesce(10, 20) -> 10``
118118
* ``coalesce(toString(null), toString(null), 'dumbo', 'bo', 'go') -> 'dumbo'``
119119
___
120120
### <code>collect</code>
121121
<code><b>collect(<i>&lt;value1&gt;</i> : any) => array</b></code><br/><br/>
122-
Collects all values of the expression in the aggregated group into a array. Structures can be collected and transformed to alternate structures during this process. The number of items will be equal to the number of rows in that group and can contain null values. The number of collected items should be small
122+
Collects all values of the expression in the aggregated group into a array. Structures can be collected and transformed to alternate structures during this process. The number of items will be equal to the number of rows in that group and can contain null values. The number of collected items should be small
123123
* ``collect(salesPerson)``
124124
* ``collect(firstName + lastName))``
125125
* ``collect(@(name = salesPerson, sales = salesAmount) )``
126126
___
127127
### <code>columnNames</code>
128128
<code><b>columnNames(<i>&lt;value1&gt;</i> : string) => array</b></code><br/><br/>
129-
Gets all output columns for a stream. You can pass a optional stream name as the second argument.
129+
Gets all output columns for a stream. You can pass a optional stream name as the second argument.
130130
* ``columnNames()``
131131
* ``columnNames('DeriveStream')``
132132
___

0 commit comments

Comments
 (0)