Vadim Radovel
Vadim Radovel
I can make a patch, but I dont see easy way to fix it - if we substitute an empty array here we have to specify types explicitly because we...
According to postgres documentation NULL is like a blackhole - everything touched by it becomes NULL too:) `1 IN (NULL)` gives NULL, while `1 IN (2,3)` gives false, `NULL IN...
Modern postgres has very powerfull features, for example sometimes I use conversions to json and back with json operators. :)
Thank you for workaround:)
There is more simple solution: ``` [%sqlf {| SELECT authors.name, coalesce(books.title) FROM authors LEFT OUTER JOIN books ON books.author = authors.id |}] ``` coalesce returns first non null value or...
As I understand - the reason is that it becomes a calculated value instead of field of table, so describe returns None here https://github.com/darioteixeira/pgocaml/blob/master/src/PGOCaml_generic.ml#L1504 Also, I've found that pgocaml now...
Same bug for mongodb backend.
@mseri We have a "gentlemen's agreement" with client side:) Would be great if this could be fixed some way...
>is the as-needed test for cc still needed? Hi! I just want to notice that trouble with default ubuntu ld behavior described in https://github.com/ocamllabs/ocaml-ctypes/issues/49 still reproduces for Ubuntu 18.04, while...
what do you think about encoding all user input string with base64? btw, replacing string c = (e.unicode).encode('latin-1') to c = e.unicode in file src/pgu/input.py makes game not to crash...