Skip to content

Commit a2ca289

Browse files
committed
fix
1 parent a78db63 commit a2ca289

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clickhouse/columns/serialization.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class SerializationDefault : public Serialization {
7878
}
7979

8080
/// Loads column prefix from input stream.
81-
bool LoadPrefix(Column* column, InputStream* input, size_t rows) const override {
81+
bool LoadPrefix([[maybe_unused]] Column* column, [[maybe_unused]] InputStream* input, [[maybe_unused]] size_t rows) const override {
8282
if constexpr (HasLoadPrefix<C>::value) {
8383
return ColumnAs<C>(column)->LoadPrefix(input, rows);
8484
}
@@ -91,7 +91,7 @@ class SerializationDefault : public Serialization {
9191
};
9292

9393
/// Saves column prefix to output stream. Column types with prefixes must implement it.
94-
void SavePrefix(Column* column, OutputStream* output) const override {
94+
void SavePrefix([[maybe_unused]] Column* column, [[maybe_unused]] OutputStream* output) const override {
9595
if constexpr (HasSavePrefix<C>::value) {
9696
ColumnAs<C>(column)->SavePrefix(output);
9797
}

0 commit comments

Comments
 (0)