| 1257 | */ |
| 1258 | extern "C" |
| 1259 | void mysql_query_cache_invalidate4(THD *thd, |
| 1260 | const char *key, unsigned key_length, |
| 1261 | int using_trx) |
| 1262 | { |
| 1263 | query_cache.invalidate(thd, key, (uint32) key_length, (my_bool) using_trx); |
| 1264 | } |
| 1265 | |
| 1266 | |
| 1267 | /***************************************************************************** |
no test coverage detected