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/ha_sequence.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/ha_sequence.h')
-rw-r--r-- | sql/ha_sequence.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_sequence.h b/sql/ha_sequence.h index 4360e9faa3d..bc799cca9e5 100644 --- a/sql/ha_sequence.h +++ b/sql/ha_sequence.h @@ -141,8 +141,8 @@ public: { return file->rename_table(from, to); } void unbind_psi() { return file->unbind_psi(); } - void rebind_psi() - { return file->rebind_psi(); } + int rebind() + { return file->rebind(); } bool auto_repair(int error) const { return file->auto_repair(error); } |