From 5886b037ecf017819406a11588b627d16e01e38f Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 24 Apr 2016 15:43:07 +0100 Subject: Introduce select base for different kinds of select --- libpqpp/pq-column.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libpqpp/pq-column.h') 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 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; }; } -- cgit v1.2.3