Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/iceberg/expression/inclusive_metrics_evaluator.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ namespace iceberg {

class ICEBERG_EXPORT InclusiveMetricsEvaluator {
public:
/// \brief Make a inclusive metrics evaluator
/// \brief Make an inclusive metrics evaluator
///
/// \param expr The expression to evaluate
/// \param schema The schema of the table
Expand Down
2 changes: 1 addition & 1 deletion src/iceberg/statistics_file.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

namespace iceberg {

/// \brief A metadata about a statistics or indices blob
/// \brief Metadata about a statistics or indices blob
struct ICEBERG_EXPORT BlobMetadata {
/// Type of the blob
std::string type;
Expand Down
2 changes: 1 addition & 1 deletion src/iceberg/util/gzip_internal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class ZlibImpl {
stream_.avail_in = static_cast<uInt>(compressed_data.size());
stream_.next_in = reinterpret_cast<Bytef*>(const_cast<char*>(compressed_data.data()));

// TODO(xiao.dong) magic buffer, can we get a estimated size from compressed data?
// TODO(xiao.dong) magic buffer, can we get an estimated size from compressed data?
std::vector<char> out_buffer(32 * 1024);
std::string result;
int ret = 0;
Expand Down
Loading