From 7b51842728b6ee99945afe401fca317c703a12d9 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 16 Jun 2021 11:28:56 +0200 Subject: Add support for bulk operations using pipeline mode in libpq 14 --- odb/pgsql/binding.hxx | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'odb/pgsql/binding.hxx') diff --git a/odb/pgsql/binding.hxx b/odb/pgsql/binding.hxx index 63cf2eb..1adf144 100644 --- a/odb/pgsql/binding.hxx +++ b/odb/pgsql/binding.hxx @@ -41,17 +41,27 @@ namespace odb public: typedef pgsql::bind bind_type; - binding (): bind (0), count (0), version (0) {} + binding () + : bind (0), count (0), version (0), + batch (0), skip (0), status (0) {} binding (bind_type* b, std::size_t n) - : bind (b), count (n), version (0) - { - } + : bind (b), count (n), version (0), + batch (0), skip (0), status (0) {} + + binding (bind_type* b, std::size_t n, + std::size_t bt, std::size_t s, unsigned long long* st) + : bind (b), count (n), version (0), + batch (bt), skip (s), status (st) {} bind_type* bind; std::size_t count; std::size_t version; + std::size_t batch; + std::size_t skip; + unsigned long long* status; // Batch status array. + private: binding (const binding&); binding& operator= (const binding&); -- cgit v1.1