diff options
Diffstat (limited to 'libpqpp/pq-column.h')
-rw-r--r-- | libpqpp/pq-column.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpqpp/pq-column.h b/libpqpp/pq-column.h index a5b33ef..99a37fb 100644 --- a/libpqpp/pq-column.h +++ b/libpqpp/pq-column.h @@ -5,16 +5,16 @@ #include <libpq-fe.h> namespace PQ { - class SelectCommand; + class CursorSelectCommand; class Column : public DB::Column { public: - Column(const SelectCommand *, unsigned int field); + Column(const CursorSelectCommand *, unsigned int field); bool isNull() const override; void apply(DB::HandleField &) const override; protected: - const SelectCommand * sc; + const CursorSelectCommand * sc; const Oid oid; }; } |