summaryrefslogtreecommitdiff
path: root/libpqpp
Commit message (Collapse)AuthorAge
* Use unique_ptr for handling unescaped bytea column bufferDan Goodliffe2023-10-08
|
* Anonymous namespace over staticDan Goodliffe2023-10-08
|
* Reformat with new clang-formatDan Goodliffe2023-10-08
|
* Use proper defines for column typesDan Goodliffe2023-10-08
|
* Don't use &vector.front() for vector which might be emptylibdbpp-postgresql-1.4.9Dan Goodliffe2023-04-21
| | | | Instead just use .data() which safely returns something which might be nullptr, but that's fine.
* Suppress false warninglibdbpp-postgresql-1.4.8Dan Goodliffe2022-07-27
|
* Add missing includeDan Goodliffe2022-03-19
|
* Use stringstream string c_str by moveDan Goodliffe2022-03-19
|
* Lots of pass by value and perfect forwarding optimisationsDan Goodliffe2022-03-17
|
* enum class BulkUpdateslibdbpp-postgresql-1.4.7Dan Goodliffe2022-02-14
|
* Bump to C++20 for non-legacy CTFDan Goodliffe2022-02-11
|
* Fix up warnings from latest clang-tidyDan Goodliffe2021-10-17
|
* Tidy up IWYUlibdbpp-postgresql-1.4.6Dan Goodliffe2021-09-21
|
* First commit passing IWYUDan Goodliffe2021-09-21
|
* Pass cppcheck and clang-tidyDan Goodliffe2021-09-18
|
* Add JT recommended warningsDan Goodliffe2021-09-18
|
* Modern jam ltolibdbpp-postgresql-1.4.5Dan Goodliffe2020-12-10
|
* Loop based bulkUpload functionsDan Goodliffe2020-12-10
| | | | not recursive.
* Move suppression commentDan Goodliffe2020-12-10
| | | | Side effect of clang-format?
* Add override tagDan Goodliffe2020-12-10
|
* Clang formatDan Goodliffe2020-11-18
|
* Fixes for tidylibdbpp-postgresql-1.4.4Dan Goodliffe2020-03-28
|
* Fixes for tidylibdbpp-postgresql-1.4.3Dan Goodliffe2019-10-19
|
* Refactor to ease testingDan Goodliffe2019-10-19
|
* Get glibmm and libpq flags from pkg-configlibdbpp-postgresql-1.4.2Dan Goodliffe2019-06-30
|
* Pipe arguments into command with xargsDan Goodliffe2019-05-10
| | | | Prevents broken pipe error
* Create hasUnloggedTables, like hasCopyToProgramDan Goodliffe2019-05-09
|
* Create mock databases in a temporary directoryDan Goodliffe2019-05-09
| | | | | | | Requires v9.3 server for COPY ... TO PROGRAM ... support, which is used to get the server to create a directory with suitable permissions. This directory is created in the system temporary directory and used as the default tablespace for the mock database.
* Get server version into a const local on constructionDan Goodliffe2019-05-09
|
* Tidy fixes for latest clanglibdbpp-postgresql-1.4.1Dan Goodliffe2019-03-30
|
* More clang-tidy fixesDan Goodliffe2019-03-03
|
* Tidy link of libpqDan Goodliffe2019-02-24
|
* Enable hicpp checks and fix accordinglyDan Goodliffe2019-02-17
|
* Modernize clang tidy fixesDan Goodliffe2019-02-16
|
* More clang tidy fixesDan Goodliffe2019-02-16
|
* Basic clang tidy fixesDan Goodliffe2019-02-16
|
* Fix ustring to string_view conversion with multi-byte charslibdbpp-postgresql-1.4.0Dan Goodliffe2019-02-07
|
* Pass new columns from make_uniqueDan Goodliffe2019-02-04
|
* CTF for parameter bindingDan Goodliffe2019-02-04
|
* Explicit desctructor not requiredDan Goodliffe2019-02-04
|
* Switch to string_viewDan Goodliffe2019-02-04
|
* Remove unnecessary calls to .string()Dan Goodliffe2019-02-03
|
* Remove boost::filesystem in favour of std::filesystemDan Goodliffe2019-02-03
|
* Switch to structured binding interfacelibdbpp-postgresql-1.3.0Dan Goodliffe2018-08-22
|
* Replace deprecated typedef std::hash<...>::result_typeDan Goodliffe2018-08-21
|
* Update to new PluginMock interfacelibdbpp-postgresql-1.2.0.1Dan Goodliffe2018-04-22
|
* C++17libdbpp-postgresql-1.2.0Dan Goodliffe2018-04-09
| | | | Updates to include C++17 changes for command options.
* C++17Dan Goodliffe2018-04-09
| | | | | Updates code largely in-keeping with updates to be C++17 in line with libadhocutil and libdbpp.
* Updated compile flagsDan Goodliffe2018-04-01
|
* Transactionless cursor selectsDan Goodliffe2018-04-01
| | | | | | | | | Remove the need to open a transaction for a cursor select by specifying them as WITH HOLD. Also add NO SCROLL as it's a feature we don't actually use. Updates tests with loops to ensure we haven't broken the ability to re-use / re-create statements.