Get the list of foreign keys referencing this table. @remark Returns the set of foreign keys where this table is the referenced or parent table. @param thd The thread handle. @param f_key_list[out] The list of foreign keys. @return The handler error code or zero for success. */
| 4711 | @return The handler error code or zero for success. |
| 4712 | */ |
| 4713 | virtual int |
| 4714 | get_parent_foreign_key_list(THD *thd, List<FOREIGN_KEY_INFO> *f_key_list) |
| 4715 | { return 0; } |
| 4716 | virtual bool referenced_by_foreign_key() const noexcept { return false;} |
| 4717 | virtual void init_table_handle_for_HANDLER() |
| 4718 | { return; } /* prepare InnoDB for HANDLER */ |
no outgoing calls
no test coverage detected