summaryrefslogtreecommitdiff
path: root/libpqpp/pq-column.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2016-04-24 15:43:07 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2016-04-24 15:43:07 +0100
commit5886b037ecf017819406a11588b627d16e01e38f (patch)
treeb73b1c435436e039c4f3eb402a78382c629920ed /libpqpp/pq-column.h
parentRename SelectCommand to CursorSelectCommand (diff)
downloadlibdbpp-postgresql-5886b037ecf017819406a11588b627d16e01e38f.tar.bz2
libdbpp-postgresql-5886b037ecf017819406a11588b627d16e01e38f.tar.xz
libdbpp-postgresql-5886b037ecf017819406a11588b627d16e01e38f.zip
Introduce select base for different kinds of select
Diffstat (limited to 'libpqpp/pq-column.h')
-rw-r--r--libpqpp/pq-column.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpqpp/pq-column.h b/libpqpp/pq-column.h
index 99a37fb..f01ee9a 100644
--- a/libpqpp/pq-column.h
+++ b/libpqpp/pq-column.h
@@ -5,16 +5,16 @@
#include <libpq-fe.h>
namespace PQ {
- class CursorSelectCommand;
+ class SelectBase;
class Column : public DB::Column {
public:
- Column(const CursorSelectCommand *, unsigned int field);
+ Column(const SelectBase *, unsigned int field);
bool isNull() const override;
void apply(DB::HandleField &) const override;
protected:
- const CursorSelectCommand * sc;
+ const SelectBase * sc;
const Oid oid;
};
}