blob: 1c6f9e2f4b39e5935e5b8693e7c12310d5621b1d (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#include "pq-binarycolumn.h"
#include "pq-selectbase.h"
#include <error.h>
PQ::BinaryColumn::BinaryColumn(const PQ::SelectBase * s, unsigned int f) :
PQ::Column(s, f)
{
}
void
PQ::BinaryColumn::apply(DB::HandleField & h) const
{
if (isNull()) {
h.null();
return;
}
switch (oid) {
case 18: //CHAROID:
case 1043: //VARCHAROID:
case 25: //TEXTOID:
case 142: //XMLOID:
h.string({ value(), length() });
break;
case 16: //BOOLOID:
h.boolean(valueAs<bool>());
break;
case 21: //INT2OID:
h.integer(be16toh(valueAs<uint16_t>()));
break;
case 23: //INT4OID:
h.integer(be32toh(valueAs<uint32_t>()));
break;
case 20: //INT8OID:
h.integer(be64toh(valueAs<uint64_t>()));
break;
case 17: //BYTEAOID
h.blob(DB::Blob(value(), length()));
break;
default:
throw DB::ColumnTypeNotSupported();
}
}
|