Skip to content

Commit

Permalink
[FLINK-18486][docs] add document for '%' module function
Browse files Browse the repository at this point in the history
This closes #12831
  • Loading branch information
fsk119 committed Jul 7, 2020
1 parent a56d70b commit 5338c6d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/dev/table/functions/systemFunctions.md
Expand Up @@ -1065,6 +1065,17 @@ numeric1 / numeric2
<tr>
<td>
{% highlight text %}
numeric1 % numeric2
{% endhighlight %}
</td>
<td>
<p>Returns the remainder (modulus) of <i>numeric1</i> divided by <i>numeric2</i>. The result is negative only if <i>numeric1</i> is negative.</p>
</td>
</tr>

<tr>
<td>
{% highlight text %}
POWER(numeric1, numeric2)
{% endhighlight %}
</td>
Expand Down
11 changes: 11 additions & 0 deletions docs/dev/table/functions/systemFunctions.zh.md
Expand Up @@ -1065,6 +1065,17 @@ numeric1 / numeric2
<tr>
<td>
{% highlight text %}
numeric1 % numeric2
{% endhighlight %}
</td>
<td>
<p>Returns the remainder (modulus) of <i>numeric1</i> divided by <i>numeric2</i>. The result is negative only if <i>numeric1</i> is negative.</p>
</td>
</tr>

<tr>
<td>
{% highlight text %}
POWER(numeric1, numeric2)
{% endhighlight %}
</td>
Expand Down

0 comments on commit 5338c6d

Please sign in to comment.