LibPQ.jl
LibPQ.jl copied to clipboard
A Julia wrapper for libpq
``` SSL connection has been closed unexpectedly julia: /tmp/srccache/libuv-ed3700c849289ed01fe04273a7bf865340b2bd7e/src/unix/core.c:886: uv__io_stop: Assertion `loop->watchers[w->fd] == w' failed. signal (6): Aborted in expression starting at no file:0 gsignal at /lib64/libc.so.6 (unknown line) abort...
We have a postgres table that contains `intervals` and are using binary parsing on all our other tables to increase query speed in our internal database support package. We are...
We should match the logic that CSV.jl and Arrow.jl use to decide if they are making `String`s or `InlineString`s. Once we have https://github.com/JuliaData/InlineStrings.jl/issues/8 it should be as fast, or faster...
Specifically, I think [this line](https://github.com/invenia/LibPQ.jl/blob/900621e13e870831ccb8927cb8d1b04f86fcb34a/deps/error_codes.jl#L73) should be changed to remove the space between type parameters. That was the only difference I saw reported by the format check.
Error in Julia 1.0 Ubuntu job: https://github.com/invenia/LibPQ.jl/runs/3577583027?check_suite_focus=true ``` Example SELECT: Test Failed at /home/runner/work/LibPQ.jl/LibPQ.jl/test/runtests.jl:159 Expression: status(result) == (LibPQ.libpq_c).PGRES_TUPLES_OK Evaluated: PGRES_FATAL_ERROR::ExecStatusType = 7 == PGRES_TUPLES_OK::ExecStatusType = 2 Stacktrace: [1] macro expansion...
After trying to get it to work for this PR https://github.com/invenia/LibPQ.jl/pull/223 I thought it would be best to do it in a future PR. The main issue with numeric data...
I'm aware that this maybe doesn't go entirely hand-in-hand with the intent of this library, but here's my pitch: I've noticed that, in my own workflow, I often construct a...
Follow-up of https://github.com/invenia/LibPQ.jl/pull/172 A test case for uploading a DataFrame using the CSV.RowIterator and a corresponding example to the documentation has been added. I had to update the version number...
I've recently written a macro tool for conveniently capturing query parameters as part of a private project. I've found it handy, so I wondered whether people would be interested in...
Fix #211 @c42f Is this a good enough error or do I need something better here? I wanted to use `BoundsError` but it's quite limited for display.