Skip to content

Commit

Permalink
fix build and sysbench
Browse files Browse the repository at this point in the history
  • Loading branch information
nautaa committed Jun 28, 2024
1 parent dc1add6 commit bd0f777
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,4 @@ class AggregateVecPhysicalOperator : public PhysicalOperator
Chunk chunk_;
Chunk output_chunk_;
AggregateValues aggr_values_;
bool outputed_ = false;
};
2 changes: 1 addition & 1 deletion src/observer/storage/table/table_meta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ TableMeta::TableMeta(const TableMeta &other)
name_(other.name_),
fields_(other.fields_),
indexes_(other.indexes_),
storage_format_(other.storage_format_),
record_size_(other.record_size_)
{}

Expand Down Expand Up @@ -167,7 +168,6 @@ int TableMeta::record_size() const { return record_size_; }

int TableMeta::serialize(std::ostream &ss) const
{

Json::Value table_value;
table_value[FIELD_TABLE_ID] = table_id_;
table_value[FIELD_TABLE_NAME] = name_;
Expand Down

0 comments on commit bd0f777

Please sign in to comment.