Remove redundant virtual from function

This commit is contained in:
alesapin 2020-04-23 18:18:33 +03:00
parent b0a73589b0
commit 5ae25b68e4

View File

@ -183,7 +183,7 @@ protected: /// still thread-unsafe part.
/// Returns whether the column is virtual - by default all columns are real.
/// Initially reserved virtual column name may be shadowed by real column.
virtual bool isVirtualColumn(const String & column_name) const;
bool isVirtualColumn(const String & column_name) const;
private: