-
## Precommit CI Run information
Logs can be found in the associated Github Actions run: https://github.com/ewlu/gcc-precommit-ci/actions/runs/11452247684
## Patch information
Applied patches: 1 -> 1
A…
-
`BooleanExpression` should use a `BinaryOp` for the binary boolean operations instead of explicitly specifying all five options. Also, it might be a good idea to move `BooleanExpression` to standard l…
-
Hi,
I just wanted to post what I've been working on. The code is pretty rough right now since I'm trying to get a very simple working example implemented. Later, that can be expanded to expose more T…
-
IMO, the following should not emit an error:
```python
class BooleanExpression:
def __init__(self, value: bool) -> None:
self.value = value
BooleanExpression(True)
```
Assumin…
-
Its not possible to easily tell “did they pass an expression”. You can use `Ash.Expr.expr?` but that literally traverses the entire value.
I *think* we can actually change this transparently to end u…
-
The `cql2_json` parser fails with a ValueError if I try to pass it an operator in uppercase, e.g. `"op": "or", "args": [...]` is fine, but `"op": "OR", "args": [...]` fails. And indeed, in _cql2_json/…
-
## Describe the bug
**schema:#/definitions/condition** indicates that the default UX for the property should be the expression editor. NOTE: **It should NOT HAVE an equals.**
**schema:#/definition…
tomlm updated
11 months ago
-
The following code:
```nim
import macros
type
Expression* = ref object of RootObj
StringExpression = ref object of Expression
value: string
BooleanExpression = ref object…
-
If we have something like
class Base (SINGLE_TABLE, with DISCRIMINATOR)
class Sub extends Base (SUPERCLASS_TABLE)
and we have a query like
SELECT b FROM Base b WHERE (TREAT(b) AS Sub).someField = va…
-
Может?
```
public static boolean booleanExpression(boolean a, boolean b, boolean c, boolean d) {
return ((a ^ b) & (c ^ d)) | ((a ^ c) & (b ^ d)) | ((a ^ d) & (b ^ c));
}
```