Vadim Radovel

Results 10 issues of Vadim Radovel

Function https://github.com/darioteixeira/pgocaml/blob/master/src/PGOCaml_generic.ml#L1535 helps ppx to guess types, but it seems that in newer versions of postgres oids have changed, for example `json[]` is not oid 119 - its now 199:...

If we pass empty list, this code https://github.com/tizoc/ppx_pgsql/blob/master/lib/runtime/ppx_pgsql_runtime.ml#L49 generates `()` that postgres can't understand. For example: ``` SELECT COUNT(*) FROM users WHERE id IN (1,2,3) ``` is correct, but ```...

Closes https://github.com/tizoc/ppx_pgsql/issues/5

"ppx_pgsql's nullability heuristic has failed" for outer joins For example if we have 2 tables: ``` CREATE TABLE authors (id serial PRIMARY KEY, name varchar(255) NOT NULL); INSERT INTO authors...

I'm not sure if this is related to cohttp, but implementation is a surprise for me as an ordinary developer. The connection that I get in my handler is not...

API
Feature

Hi, there! I don't know why, but when I use C-c C-c t (flow-minor-type-at-pos) and others I can't see the result in minibuf because flow adds string "Please wait. Server...

**Describe the bug** According to man page, usage of ocp-indent-config: `strict_with sets function-indent-nested and match-indent-nested`, but it doesn't seem happen - neither `ocamlformat --ocp-indent-config --print-config` shows changed value, nor behavior...

Kind/Bug :x:

I think, that it would be usefull to have method that returns name of browser currently using (as alternative - index of PHPUnit_Extensions_SeleniumTestCase::browsers array) For example: I want to test...

There are `alias` and `-->` funcitons in Sequoia.Select, but they operate over Expr.t while tables are not expressions. Example: ``` module Weapon = struct include (val Postgresql.table "weapon") let id...

Code like this ``` let%bind res = somefunc ... in match res with ... ``` triggers `Using 'function' is recommended` alert, though we can't really rewrite this with `function`.