We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ac5afc commit 183c18bCopy full SHA for 183c18b
src/iceberg/expression/literal.cc
@@ -446,7 +446,8 @@ std::string Literal::ToString() const {
446
case TypeId::kUuid: {
447
return std::get<Uuid>(value_).ToString();
448
}
449
- case TypeId::kBinary: {
+ case TypeId::kBinary:
450
+ case TypeId::kFixed: {
451
const auto& binary_data = std::get<std::vector<uint8_t>>(value_);
452
std::string result = "X'";
453
result.reserve(/*prefix*/ 2 + /*suffix*/ 1 + /*data*/ binary_data.size() * 2);
0 commit comments