Radosław Waśko
Radosław Waśko
While working on #9486 I have disabled some edge case tests by marking them pending, because they were behaving differently than on Postgres and thus failing. We should update the...
If my node returns just a value of `Nothing`, it is stuck spinning instead of showing a value:  Once I switch e.g. to Table visualization it shows up OK:...
The PR #10190 adds logic for falling back to Windows-1252 encoding if invalid UTF-8 characters are encountered. ### Current implementation It is implemented by making 2 passes through the file:...
In the in-memory Table backend, we can store any Enso object in a Column. Currently, such a column gets a `Mixed` datatype. To allow for more precise types, we want...
I have just tried using `round` with `use_bankers=True` in Postgres, and the query that has got created is following: ```sql SELECT CAST((CASE WHEN ("foo"."X" >= ?) THEN (CASE WHEN (CASE...
Currently I disabled these tests as they run very long, for the same reason as #10306. Once #10306, we should revisit these tests also for Snowflake. In particular, we should...
Currently we are combining queries by including the 'ingredients' of a query as subqueries. That works, but in some cases may cause duplication - making the queries larger than necessary...
When working on the Snowflake Dialect (#9486) one of the problems was the complexity - we have lots of features in our Database library and implementing all of them for...
We have some Table operations that are relying on the fallback which does the Java-to-Enso callback which is quite costly. There's two things we can improve here: 1. Make the...
See the following program: ``` foo = # TODO main = 42 ``` ### Expected behaviour Of course we are missing any statement in the `foo` method. But it should...