Jonathan Stowe

Results 211 comments of Jonathan Stowe

Or maybe the type could provide a mechanism to do certain operators so in the 'eq' case it would have a: ```perl6 multi method equals($lhs, Str $rhs --> Bool )...

Yep that shaved that particular yak as after a period of thinking about the password case I began to realise that is just wanted to be a string with special...

Of course in the JSON case Pg will let you do queries on the content of the document, so you'd want to use the native capabilities of the DB wherever...

Yeah I'll take a look at that if I get a minute (juggling a few ideas at the moment,)

Sure, as I say there is a workaround so not urgent. With all of these I'm finding them while working on a PoC for something at work so setting them...

I think this is a symptom of the same problem but it doesn't get as far as making the query: ``` Unhandled exception in code scheduled on thread 12 No...

Right, finally got the original error: ``` SQL : SELECT max("stats_view_refresh".refresh_time) as "data_1" FROM "upload" WHERE "upload".channel = 'MRP' AND "upload".filename = 'XT_MRP_Stock_Misalignment_20220731.csv' AND "upload".report_date = '2022-07-31' LIMIT 1 BIND:...

Yeah it's also tricky to reproduce because it is very sensitive to the timings. The application accepts a multi-file upload and in the background (having returned a 204 response,) processes...

The reason for this, as you may have gathered, is that without the `use Red` you are not getting the additional operator implementations specific to `Red` so you wind up...

Also, which I forgot, is that it is only necessary to `use Red::Operator` rather than the whole of `Red` in these cases. If you really don't want to worry about...