Skip to content

Commit

Permalink
Fix compile error under release mode (#1113)
Browse files Browse the repository at this point in the history
Signed-off-by: JaySon-Huang <[email protected]>
  • Loading branch information
JaySon-Huang authored Sep 22, 2020
1 parent 725ea4f commit f78b024
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dbms/src/Common/FailPoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ class FailPointChannel
{
};

void FailPointHelper::enableFailPoint(const String & fail_point_name) {}
void FailPointHelper::enableFailPoint(const String &) {}

void FailPointHelper::disableFailPoint(const String & fail_point_name) {}
void FailPointHelper::disableFailPoint(const String &) {}

void FailPointHelper::wait(const String & fail_point_name) {}
void FailPointHelper::wait(const String &) {}
#endif

} // namespace DB

0 comments on commit f78b024

Please sign in to comment.