You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Better testing of float `to_string` lengths.
More portable ways of trying to hit the worst-case string length for
floating-point conversions to strings. Thanks @GordonLElliott.
Fix link error. Backported from 7.0.
Fixesjtv#340.
A missing `PQXX_LIBEXPORT` could cause link errors for a missing
`extract_value` specialisation for `nullptr_t`, when building libpqxx as
a shared library.
Add `esc(std::string_view)`.
Fixesjtv#295.
I guess I meant to do this before, but forgot! The overload was there
on `connection` but not on `transaction_base`.
Fix handling of eof() in streambuffer underflow.
@tomlankhorst has identified a serious bug which affected the
`ilostream` class. If you opened a large object _as an ilostream,_
and it contained a byte with value `0xff` _at a buffer boundary,_
on a system where `char` is a signed type (such as x86-compatible
systems), then reading of the large object would **mistake the
`0xff` byte for end-of-file** and stop reading prematurely.