Skip to content

Commit 183c18b

Browse files
committed
fix
1 parent 5ac5afc commit 183c18b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/iceberg/expression/literal.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,8 @@ std::string Literal::ToString() const {
446446
case TypeId::kUuid: {
447447
return std::get<Uuid>(value_).ToString();
448448
}
449-
case TypeId::kBinary: {
449+
case TypeId::kBinary:
450+
case TypeId::kFixed: {
450451
const auto& binary_data = std::get<std::vector<uint8_t>>(value_);
451452
std::string result = "X'";
452453
result.reserve(/*prefix*/ 2 + /*suffix*/ 1 + /*data*/ binary_data.size() * 2);

0 commit comments

Comments
 (0)