8000 Tags · patriotyk/libpqxx · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: patriotyk/libpqxx

Tags

7.0.4

Toggle 7.0.4's commit message
Also add missing operators on row iterator.

6.4.6

Toggle 6.4.6's commit message
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.

7.0.3

Toggle 7.0.3's commit message
Update large objects for house style. Fix types.

7.0.2

Toggle 7.0.2's commit message
Use `invoke_result_t`.

7.0.1

Toggle 7.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Refactor stream_from to remove some awkward template code (jtv#273)

* Refactor stream_from to remove some awkward template code

This changes it to a simpler compile time list comprehension using a
c++17 fold over the comma operator.

* Add back in the check that we don't try to pull too many fields

7.0.0

Toggle 7.0.0's commit message
Reformat.

6.4.5

Toggle 6.4.5's commit message
Update NEWS.

6.3.4

Toggle 6.3.4's commit message
Update NEWS.

6.4.4

Toggle 6.4.4's commit message
In CMake, prefer CMake's config headers.

Fixes jtv#178.

Sometimes people experienced strange build problems when building
with CMake, where libpqxx seemed to be compiled for a different C++
version than the one for which it was configured.

This seems to happen in out-of-tree builds when the source tree has
the configuration headers (`include/pqxx/config-*-*.h`), generated
by the native autoconf-based build.  The CMake build would generate
similar config headers in the build tree, but when actually compiling,
the build preferred the autoconf-generated config headers over the
CMake-generated ones.

This fixes that by reordering the include directories as they are
added.

6.4.3

Toggle 6.4.3's commit message
Add stream headers to pqxx/pqxx header.

0