diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2020-01-24 00:44:48 +0400 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2020-03-24 20:47:41 +0200 |
commit | da82e75901644b0f9ea25b526e13b4db1c9c8e63 (patch) | |
tree | e5a03f17f61b65de06b21f6e1de3b9f7851f9195 /sql/handler.h | |
parent | bff79492c5f6c9669b9dc9bf2cf0483b3b001da7 (diff) | |
download | mariadb-git-da82e75901644b0f9ea25b526e13b4db1c9c8e63.tar.gz |
handler::rebind()
- rename PFS specific rebind_psi() to generic rebind()
- call rebind independently of PFS compilation status
- allow rebind() return an error
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/handler.h b/sql/handler.h index 8674ccfd70e..b99d33874e9 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -3160,7 +3160,7 @@ private: public: virtual void unbind_psi(); - virtual void rebind_psi(); + virtual int rebind(); /** Put the handler in 'batch' mode when collecting table io instrumented events. |