File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
docs/en/sql-reference/10-sql-commands/30-query-operators Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,6 @@ import FunctionDescription from '@site/src/components/FunctionDescription';
24
24
| ** &verbar ; ** | Computes the bitwise or of numeric expression | ** 32 &verbar ; 3** | 35 |
25
25
| ** #** | Computes the bitwise xor of numeric expression | ** 17 # 5** | 20 |
26
26
| ** ~ ** | Computes the bitwise not of numeric expression | ** ~ 1** | ~ 2 |
27
- | ` **<<** ` | Computes the bitwise shift left of numeric expression | ` **1 << 4** ` | 16 |
27
+ | ** ` << ` ** | Computes the bitwise shift left of numeric expression | ** 1 ` << ` 4** | 16 |
28
28
| ** >>** | Computes the bitwise shift right of numeric expression | ** 8 >> 2** | 2 |
29
- | ` ** <->** ` | Computes the Euclidean distance (L2 norm) between vectors | ` **[1, 2] <-> [2, 3]** ` | 1.4142135 |
29
+ | ** ` <-> ` ** | Computes the Euclidean distance (L2 norm) between vectors | ** [ 1, 2] ` <-> ` [ 2, 3] ** | 1.4142135 |
You can’t perform that action at this time.
0 commit comments