File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ using SelectCallback = std::function<void(const Block& block)>;
82
82
using SelectCancelableCallback = std::function<bool (const Block& block)>;
83
83
using SelectServerLogCallback = std::function<bool (const Block& block)>;
84
84
using ProfileEventsCallback = std::function<bool (const Block& block)>;
85
- using ProfileCallbak = std::function<void (const Profile& profile)>;
85
+ using ProfileCallback = std::function<void (const Profile& profile)>;
86
86
87
87
88
88
class Query : public QueryEvents {
@@ -174,7 +174,7 @@ class Query : public QueryEvents {
174
174
return *this ;
175
175
}
176
176
177
- inline Query& OnProfile (ProfileCallbak cb) {
177
+ inline Query& OnProfile (ProfileCallback cb) {
178
178
profile_callback_cb_ = std::move (cb);
179
179
return *this ;
180
180
}
@@ -240,7 +240,7 @@ class Query : public QueryEvents {
240
240
SelectCancelableCallback select_cancelable_cb_;
241
241
SelectServerLogCallback select_server_log_cb_;
242
242
ProfileEventsCallback profile_events_callback_cb_;
243
- ProfileCallbak profile_callback_cb_;
243
+ ProfileCallback profile_callback_cb_;
244
244
};
245
245
246
246
}
You can’t perform that action at this time.
0 commit comments