mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Merge 11.6 into 11.7
This commit is contained in:
@@ -4536,7 +4536,7 @@ public:
|
||||
@return The handler error code or zero for success.
|
||||
*/
|
||||
virtual int
|
||||
get_foreign_key_list(const THD *thd, List<FOREIGN_KEY_INFO> *f_key_list)
|
||||
get_foreign_key_list(THD *thd, List<FOREIGN_KEY_INFO> *f_key_list)
|
||||
{ return 0; }
|
||||
/**
|
||||
Get the list of foreign keys referencing this table.
|
||||
@@ -4550,9 +4550,9 @@ public:
|
||||
@return The handler error code or zero for success.
|
||||
*/
|
||||
virtual int
|
||||
get_parent_foreign_key_list(const THD *thd, List<FOREIGN_KEY_INFO> *f_key_list)
|
||||
get_parent_foreign_key_list(THD *thd, List<FOREIGN_KEY_INFO> *f_key_list)
|
||||
{ return 0; }
|
||||
virtual uint referenced_by_foreign_key() { return 0;}
|
||||
virtual bool referenced_by_foreign_key() const noexcept { return false;}
|
||||
virtual void init_table_handle_for_HANDLER()
|
||||
{ return; } /* prepare InnoDB for HANDLER */
|
||||
virtual void free_foreign_key_create_info(char* str) {}
|
||||
|
Reference in New Issue
Block a user