Eric Davies

Results 62 issues of Eric Davies

If a package uses LibPQ and catches a LibPQ error, LibPQ still produces an error log. This can result in confusing logs, where caught errors show up as `ERROR` even...

It should be something that supports the full range of the PostgreSQL [NUMERIC](https://www.postgresql.org/docs/10/datatype-numeric.html#DATATYPE-NUMERIC-DECIMAL) type, as well as `NaN`. It does not need to support `Inf`.

CEnum was added in https://github.com/invenia/LibPQ.jl/pull/113. Once we can override Base.show on Base.Enum, we can switch to that. Related Julia issue: https://github.com/JuliaLang/julia/issues/17736

From https://github.com/invenia/LibPQ.jl/pull/102, see test comments. This works for psycopg2 so there must be something we can do to fix it.

For one thing, this will make it possible to measure execution time separately from data transfer time. It will also be possible to run multiple queries at once (on different...

Conquer test coverage and test as many code paths as possible.

tests

This is a bunch of work. This requires: - [ ] a copy of the encoding stored in the Result object (the connection can change encoding but this doesn't affect...

http://toolz.readthedocs.io/en/latest/api.html

https://github.com/invenia/BlueStyle/pull/67 showed that we had broken links in the README. Perhaps we could use Documenter to run linkcheck on the README somehow?

Previously, `searchsorted` with `ClosedInterval` as the index could only search a `Range`. But, since `searchsorted(first|last)` works for any type with an ordering, we can extend `searchsorted` to search any `AbstractVector`....