summaryrefslogtreecommitdiff
path: root/lib/output/pq
Commit message (Collapse)AuthorAge
* Support the rotate event to move to the next binlog fileDan Goodliffe2021-07-25
|
* Add before/after event to update position in replication streamDan Goodliffe2021-07-25
|
* Dedupe a bitDan Goodliffe2021-07-24
|
* Fix up insert/delete SQL generationDan Goodliffe2021-07-24
|
* Add missing keys initializerDan Goodliffe2021-07-23
|
* First cut replicating row insertsDan Goodliffe2021-07-23
|
* First cut replicating row deletesDan Goodliffe2021-07-23
|
* Store key countDan Goodliffe2021-07-22
|
* First cut replicating row updatesDan Goodliffe2021-07-22
|
* Get source database name into UpdateDatabase on configureDan Goodliffe2021-07-19
|
* Move constructable PqConnDan Goodliffe2021-07-19
|
* Rename TableDef to TableOutputDan Goodliffe2021-07-19
| | | | Will store things like the prepared statements as they're needed.
* Pass bindings as a span, only wrap with initializer_listDan Goodliffe2021-07-14
|
* Wider type support for PQ bindingsDan Goodliffe2021-07-14
| | | | timespec not supported... honestly not sure what it should bind!
* Supress bad cppcheck suggestionDan Goodliffe2021-07-05
|
* Simplify PQ end uploadDan Goodliffe2021-07-05
|
* Simplify PQ upload lambdaDan Goodliffe2021-07-05
|
* Explicit integer type castsDan Goodliffe2021-07-05
|
* Prevent move and copy of WritePqCopyStreamDan Goodliffe2021-07-05
|
* Add missing bracesDan Goodliffe2021-07-05
|
* Tidy selecting source data a bitDan Goodliffe2021-07-05
| | | | Fixes variable shadowing.
* Support copying exist table dataDan Goodliffe2021-07-04
|
* Support bulk upload to PQDan Goodliffe2021-07-04
|
* Remember table when it's addedDan Goodliffe2021-07-04
|
* Introduce the cursor conceptDan Goodliffe2021-07-04
| | | | Not implemented for PQ yet.
* Add missing virtual destructorDan Goodliffe2021-06-29
|
* Add constructor required by clangDan Goodliffe2021-06-29
|
* Add an existing table to the configDan Goodliffe2021-06-27
|
* Basic type mapperDan Goodliffe2021-06-27
|
* Get the target schema nameDan Goodliffe2021-06-19
|
* Set client char set no PQ connectDan Goodliffe2021-06-13
|
* Perform source setup in transactionDan Goodliffe2021-06-13
|
* Add transaction supportDan Goodliffe2021-06-13
|
* Code for setting up an initial source from scratchDan Goodliffe2021-06-13
| | | | Includes beginnings of the end-to-end test suite.
* Remember PQ connection stringDan Goodliffe2021-06-13
|
* Expose source id of UpdateDatabaseDan Goodliffe2021-06-13
|
* Fix column order in select sourceDan Goodliffe2021-06-13
|
* Avoid direct use of runtime_error in PostgreSQL stuffDan Goodliffe2021-06-12
| | | | | Adds proper exception which extends it and gets the PostgreSQL error message.
* Load schema and config etc from target DBDan Goodliffe2021-06-12
|
* Add RecordSet RowViewDan Goodliffe2021-06-06
| | | | | | | This represents a view into a recordset by row number and provides easy access to values in a column by index and the ability to create a new object instance by N columns which are passed to the object's constructor.
* Add conversion operators to get common types from DbValuesDan Goodliffe2021-06-05
|
* Wrap DbValue in a class so we can add helpers to itDan Goodliffe2021-06-05
|
* Get upstream from DBDan Goodliffe2021-06-03
| | | | Adds options from command line and a few supporting tweaks
* Determine parameter mode at point of call by DB type propertyDan Goodliffe2021-06-03
| | | | It's still constexpr, so that's all good.
* Generate DbStmt templates from .sql filesDan Goodliffe2021-06-01
| | | | | | | m4 generator and related code. Reshuffles some CTF stuff to avoid pulling in all of CTF and iostream for its fixed_string. Moves CTF out of AdHoc namespace. Add some initial SQL statements.
* Initial commit of prepstmt, selects, record setsDan Goodliffe2021-05-31
| | | | This is full of holes, but all the basics are covered.
* Basic support for queries with bound parametersDan Goodliffe2021-05-24
| | | | | Bit of a reshuffle to make the types not DB specific, add some basic tests over query execution, no selects yet and no validation anything is actually right.
* Add PQ basicsDan Goodliffe2021-05-23