HHH-15519 document bitand(), bitor(), bitxor()
This commit is contained in:
parent
5fe2b75d2d
commit
1c0121a94d
|
@ -917,6 +917,7 @@ Of course, we also have a number of functions for working with numeric values.
|
|||
| `radians()` | Convert degrees to radians | `radians(x)` | ✖
|
||||
| `least()` | Return the smallest of the given arguments | `least(x, y, z)` |✖
|
||||
| `greatest()` | Return the largest of the given arguments | `greatest(x, y, z)` | ✖
|
||||
| `bitand()`, `bitor()`, `bitxor()` | Bitwise functions | `bitand(x,y)` | ✖
|
||||
|===
|
||||
|
||||
We haven't included <<aggregate-functions,aggregate functions>>, <<aggregate-functions-orderedset,ordered set aggregate functions>>, or <<aggregate-functions-window,window functions>> in this list, because their purpose is more specialized, and because they come with extra special syntax.
|
||||
|
|
|
@ -983,6 +983,9 @@ public abstract class Dialect implements ConversionContext, TypeContributor, Fun
|
|||
* <li> <code>greatest(arg0, arg1, ...)</code>
|
||||
* <li> <code>degrees(arg)</code>
|
||||
* <li> <code>radians(arg)</code>
|
||||
* <li> <code>bitand(arg1, arg1)</code>
|
||||
* <li> <code>bitor(arg1, arg1)</code>
|
||||
* <li> <code>bitxor(arg1, arg1)</code>
|
||||
* </ul>
|
||||
*
|
||||
* <ul>
|
||||
|
@ -1051,7 +1054,6 @@ public abstract class Dialect implements ConversionContext, TypeContributor, Fun
|
|||
functionFactory.math();
|
||||
functionFactory.round();
|
||||
|
||||
|
||||
//trig functions supported on almost every database
|
||||
|
||||
functionFactory.trigonometry();
|
||||
|
|
Loading…
Reference in New Issue