Commit 588ff21f authored by Rich Prohaska's avatar Rich Prohaska

DB-770 tokudb::extra HA_EXTRA_NOT_USED should explicitly do nothing

parent 340bc1bd
...@@ -5980,6 +5980,8 @@ int ha_tokudb::extra(enum ha_extra_function operation) { ...@@ -5980,6 +5980,8 @@ int ha_tokudb::extra(enum ha_extra_function operation) {
case HA_EXTRA_NO_IGNORE_NO_KEY: case HA_EXTRA_NO_IGNORE_NO_KEY:
using_ignore_no_key = false; using_ignore_no_key = false;
break; break;
case HA_EXTRA_NOT_USED:
break; // must do nothing and return 0
default: default:
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment