1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#ifndef PG_BINARY_COLUMN_H #define PG_BINARY_COLUMN_H #include "pq-column.h" namespace DB { class HandleField; } namespace PQ { class SelectBase; class BinaryColumn : public Column { public: BinaryColumn(const SelectBase *, unsigned int field); void apply(DB::HandleField &) const override; }; } #endif