Rob Browning

Results 5 issues of Rob Browning

I'm not at all sure this is right, since I don't know test.generative or data.generators well, but it at least allows `lein test :generative` to work again with 1.0.0.

I suspect `:otherwise` was intended to be inside the `cond` here: https://github.com/drewr/postal/blob/7606a66c10b66abd3476c6f4c828fb4b87d3792d/src/postal/message.clj#L83-L91

With 42.7.7 this code fails: ``` // assuming: create table test (data bytea) s = connection.prepareStatement("insert into test (data) values (?)"); obj = PGobject(); obj.setType("bytea"); obj.setValue("\\x01020304"); s.setObject(1, obj); s.toString() ```...