mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.3 into 10.4
In main.index_merge_myisam we remove the test that was added in commita2d24def8c
because it duplicates the test case that was added in commit5af12e4635
.
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
#define HANDLER_INCLUDED
|
||||
/*
|
||||
Copyright (c) 2000, 2019, Oracle and/or its affiliates.
|
||||
Copyright (c) 2009, 2019, MariaDB
|
||||
Copyright (c) 2009, 2020, MariaDB
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
@ -5083,4 +5083,15 @@ void print_keydup_error(TABLE *table, KEY *key, myf errflag);
|
||||
|
||||
int del_global_index_stat(THD *thd, TABLE* table, KEY* key_info);
|
||||
int del_global_table_stat(THD *thd, const LEX_CSTRING *db, const LEX_CSTRING *table);
|
||||
#ifndef DBUG_OFF
|
||||
/** Converts XID to string.
|
||||
|
||||
@param[out] buf output buffer
|
||||
@param[in] xid XID to convert
|
||||
|
||||
@return pointer to converted string
|
||||
|
||||
@note This does not need to be multi-byte safe or anything */
|
||||
char *xid_to_str(char *buf, const XID &xid);
|
||||
#endif // !DBUG_OFF
|
||||
#endif /* HANDLER_INCLUDED */
|
||||
|
Reference in New Issue
Block a user