| 121 | } |
| 122 | |
| 123 | void TypedColumnBuffer::appendBool(bool value) { |
| 124 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kBool); |
| 125 | const auto byte = static_cast<uint8_t>(value ? 1 : 0); |
| 126 | appendFixed(byte); |
| 127 | } |
| 128 | |
| 129 | void TypedColumnBuffer::appendString(std::string_view value) { |
| 130 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kString); |