Skip to content
Commit 0bad1f8b authored by Grégory Mantelet's avatar Grégory Mantelet
Browse files

[ADQL] Support bitwise operators + Fix wrong hexadecimal conversion (only for

negative values).

The implemented operators precedence is:

```
[~-](unary) >> [*/] >> [+-] >> [^&|]
```

_**Example:** `~3-1|2*5^6/1+2 = ((~3)-1)|((2*5)^((6/1)+2)) = -5`_
parent c7bede57
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment