| 497 | history.pop_back(); |
| 498 | } |
| 499 | virtual void beforeTableKey ( Table *, TypeInfo *, char * pk, TypeInfo * ki, uint64_t, bool ) override { |
| 500 | string keyText = debug_value ( pk, ki, PrintFlags::none ); |
| 501 | keys.push_back(keyText); |
| 502 | history.push_back("=>key=>"); |
| 503 | } |
| 504 | virtual void afterTableKey ( Table *, TypeInfo *, char *, TypeInfo *, uint64_t, bool ) override { |
| 505 | history.pop_back(); |
| 506 | } |
nothing calls this directly
no test coverage detected