Jonathan Stowe
Jonathan Stowe
If `--profile-kind=heap` then the file generated for `--profile` is always a binary heap snapshot regardless of what the extension of the supplied filename might be. I guess the behaviour is...
There is a certain category of C library interface where the caller provides a struct which has one or more pointers to callback functions that will be called by the...
I think it's prudent to consider https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42574 The CVE came out of embargo today so I've had a quick look at it. TLDR; An exploit can use the unicode bi-directional...
I'm getting: ``` Unhandled exception in code scheduled on thread 18 Unknown Error!!! Please, copy this backtrace and open an issue on https://github.com/FCO/Red/issues/new Driver: Red::Driver::Pg Original error: DB::Pg::Error::FatalError.new(message => "missing...
The SQL ```BETWEEN``` will be quite easy to implement now as #138 put in place the "list on the RHS" part. But for the life of me I can't think...
It would be handy to be able to express aggregate functions in a `.map`, `.classify` set so one can do something like: ``` select a, b, max(c) from foo group...
I might be missing something quite obvious but it doesn't seen possible to create a `group by` with more than one column using `.classify`. It's probably implement `.reduce` as per...
The SQL Standards are a bit handwavey about nested transactions and different DB backends handle it different, but for our current purposes both Pg and SQLite basically ignore any subsequent...
I think that the following may just be a very strong warning in the documentation as I can't actually think of a sane way of fixing it, though your mileage...
It would be useful to have a multi candidate for `ResultSeq.join-model` that can be supplied the *name* of a model rather than the type object. Obviously this can be worked...