blob: e44d7e264be12a32c10c5c22802022f808f5c214 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#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;
private:
template<std::integral T> [[nodiscard]] inline T valueAs() const;
};
}
#endif
|