Mikaël Francoeur

Results 27 issues of Mikaël Francoeur

**Problem** `InvocationOnMock.callRealMethod()` behaves incorrectly IMO with regards to how it interacts with `invocation.getArguments()` and how it handles its argument array. When I call `invocation.getArguments()`, I would expect the returned array...

When using 'jack' or 'jack-rt' backend, when the command `Print()` is in parallel with another command, such as `Pass()` or `Transpose()`, and that the command sends to a port number...

There was a bug in SpEL where an array passed into a varargs method could be wrapped one too many times if the component type of the argument didn't match...

in: core
status: feedback-provided

When a JSR 303 implementation is on the classpath, Spring Boot validates all Configuration Properties classes that are annotated with `@Validated` (see `ConfigurationPropertiesBinder::getValidators`). But the validation applies to all nested...

status: waiting-for-triage

*Note: this is in response to a card in the "to do" category in ghost2's project page that suggests building a GUI.* I also think there should be a GUI...

feature
major
planned/2.x

This PR adds support for varargs invocations where the varargs argument is an array with a component type that is a subtype of the parameter varargs component type. For example,...

in: core
type: enhancement

From commit https://github.com/tursodatabase/turso/commit/fb31fd56ba5ea77f280e004d2b323105705b6d5c ```sh ./scripts/run-sim --maximum-tests 1000 --min-tick 10 --max-tick 50 --profile write_heavy --seed 15590731512610634011 loop -n 10 -s ``` gives: ``` Error: failed with error: 'InternalError("simulation failed: - wrong...

Turso: ``` turso> values(asdf); ┌──────┐ │ 0 │ ├──────┤ │ asdf │ └──────┘ ``` ``` turso> explain values(asdf); addr opcode p1 p2 p3 p4 p5 comment ---- ----------------- ---- ----...

While working on the simulator, I identified this incompatibility between Turso and SQLite. For the statements below, Turso returns `1` (true), but SQLite returns `0` (false): ```sql -- same number...

In compound selects: Turso ``` turso> with t as (select * from (values(2))) values(1) union all select * from t; × Parse error: no such table: t ``` SQLite: ```...