Skip to content

Commit 64e1454

Browse files
committed
Review changes without extra whitespace
1 parent 873107d commit 64e1454

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

clickhouse/columns/decimal.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ class ColumnDecimal : public Column {
2626
void SaveBody(OutputStream* output) override;
2727
void Clear() override;
2828
size_t Size() const override;
29-
3029
ColumnRef Slice(size_t begin, size_t len) const override;
3130
ColumnRef CloneEmpty() const override;
3231
void Swap(Column& other) override;

ut/columns_ut.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ TEST(ColumnsCase, NumericSlice) {
5858
ASSERT_EQ(sub->At(2), 13u);
5959
}
6060

61+
6162
TEST(ColumnsCase, FixedStringInit) {
6263
const auto column_data = MakeFixedStrings(3);
6364
auto col = std::make_shared<ColumnFixedString>(3, column_data);

0 commit comments

Comments
 (0)