aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/binding.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-06-16 11:28:56 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-06-29 11:11:44 +0200
commit7b51842728b6ee99945afe401fca317c703a12d9 (patch)
tree7ed893517f793928679254a74cd7b28479556f4f /odb/pgsql/binding.hxx
parentc6019273a7564be9ed772d45aa95e09aaff37a23 (diff)
Add support for bulk operations using pipeline mode in libpq 14
Diffstat (limited to 'odb/pgsql/binding.hxx')
-rw-r--r--odb/pgsql/binding.hxx18
1 files changed, 14 insertions, 4 deletions
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&);