forked from duckdb/duckdb-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.cpp
45 lines (41 loc) · 1.21 KB
/
types.cpp
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
44
45
#include "types.hpp"
#include <string>
#include <vector>
std::string type_to_jduckdb_type(duckdb::LogicalType logical_type) {
switch (logical_type.id()) {
case duckdb::LogicalTypeId::DECIMAL: {
uint8_t width = 0;
uint8_t scale = 0;
logical_type.GetDecimalProperties(width, scale);
std::string width_scale = std::to_string(width) + std::string(";") + std::to_string(scale);
auto physical_type = logical_type.InternalType();
switch (physical_type) {
case duckdb::PhysicalType::INT16: {
std::string res = std::string("DECIMAL16;") + width_scale;
return res;
}
case duckdb::PhysicalType::INT32: {
std::string res = std::string("DECIMAL32;") + width_scale;
return res;
}
case duckdb::PhysicalType::INT64: {
std::string res = std::string("DECIMAL64;") + width_scale;
return res;
}
case duckdb::PhysicalType::INT128: {
std::string res = std::string("DECIMAL128;") + width_scale;
return res;
}
default:
return std::string("no physical type found");
}
} break;
default:
// JSON requires special handling because it is mapped
// to JsonNode class
if (logical_type.IsJSONType()) {
return logical_type.GetAlias();
}
return duckdb::EnumUtil::ToString(logical_type.id());
}
}