LibPQ.jl icon indicating copy to clipboard operation
LibPQ.jl copied to clipboard

A Julia wrapper for libpq

Results 64 LibPQ.jl issues
Sort by recently updated
recently updated
newest added

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...

In my database, I've the below structure: ```sql CREATE TABLE public.devices ( id uuid, data jsonb ) ``` When I run my query using this package, I got the below,...

Tooks me a second to figure out how how to run the tests as this is currently posted at the end of the linked documentation. Might be good to include...

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...

Hi! Is it possible to automatically convert postgres arrays to julia arrays? E.g. when there is `array_agg` in the query.

Currently if you upload an entire table with `Data.stream!` it spits out a number of "info" statements equal to the number of rows. It would be nice if this could...

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

tests