blob: ed6eae7802edf55c90d097039e382d3179d2d9e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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
|