mysql提示[Warning] Invalid (old?) table or database name问题的解决方法

时间:2024-01-14 18:18:54 

DROP TABLE IF EXISTS [TEMP_TABLE_NAME];
create temporary table [TEMP_TABLE_NAME] select col1,col2,... from [TABLE_NAME];
alter table [TEMP_TABLE_NAME] add unique idx_col1(col1);
经过以上操作中,多次出现该warning问题。通过查询和跟踪调试源码,有以下线索和处理方式:
mysql的"[Warning] Invalid (old?) table or database name"问题出现位置:

sql_table.cc:279
uint explain_filename (THD* thd, const char *from, char *to , uint to_length , enum_explain_filename_mode explain_mode )

跟踪代码发现,只有在ha_innodb.cc:1946的innobase_convert_identifier 中调用explain_filename函数。


/*****************************************************************//**
Convert an SQL identifier to the MySQL system_charset_info (UTF-8)
and quote it if needed.
@return pointer to the end of buf */
static char* innobase_convert_identifier (
/*========================*/
char* buf, /*!< out: buffer for converted identifier */
ulint buflen, /*!< in: length of buf, in bytes */
const char * id, /*!< in: identifier to convert */
ulint idlen, /*!< in: length of id, in bytes */
void* thd, /*!< in: MySQL connection thread, or NULL */
ibool file_id) /*!< in: TRUE=id is a table or database name;
FALSE=id is an UTF-8 string */


顺着线索向上查找,发现在有两个位置调用了innobase_convert_identifier 函数,分两个线索继续查找。

线索一:
ha_innodb.cc:2034
调用innodb_convert_identifier函数


/*****************************************************************//**
Convert a table or index name to the MySQL system_charset_info (UTF-8)
and quote it if needed.
@return pointer to the end of buf */
extern "C" UNIV_INTERN char* innobase_convert_name (
/*==================*/
char* buf, /*!< out: buffer for converted identifier */
ulint buflen, /*!< in: length of buf, in bytes */
const char * id, /*!< in: identifier to convert */
ulint idlen, /*!< in: length of id, in bytes */
void* thd, /*!< in: MySQL connection thread, or NULL */
ibool table_id) /*!< in: TRUE=id is a table or database name;
FALSE=id is an index name */


从函数定义和函数功能来看,该函数是将mysql的表名或者索引名转换成utf8,与字符集相关。查看现有数据库字符集和生成的临时表字符集均为lanti1,推断是可能的原因之一。
处理方式:
修改数据库的字符集为utf8,观察数据库是否仍然出现该错误。

线索二:


ha_innodb.cc:6269
调用innodb_convert_identifier函数
/*****************************************************************//**
Creates a table definition to an InnoDB database. */
static create_table_def (
/*=============*/
trx_t* trx, /*!< in: InnoDB transaction handle */
TABLE* form, /*!< in: information on table
columns and indexes */
const char * table_name, /*!< in: table name */
const char * path_of_temp_table, /*!< in: if this is a table explicitly
created by the user with the
TEMPORARY keyword, then this
parameter is the dir path where the
table should be placed if we create
an .ibd file for it (no .ibd extension
in the path, though); otherwise this
is NULL */
ulint flags) /*!< in: table flags */


在create_table_def 函数中,调用row_create_table_for_mysql函数后,当返回值为DB_DUPLICATE_KEY时,调用innodb_convert_identifier,从而触发该warning。


row0mysql.c:1820
UNIV_INTERN int row_create_table_for_mysql(
/*=======================*/
dict_table_t* table, /*!< in, own: table definition
(will be freed) */
trx_t* trx) /*!< in: transaction handle */


该函数中调用了更深层次的函数,但从调试代码来看,暂时没有发现导致该问题的点。
处理方式:
在线索一中的处理方式不能解决问题的情况下,再进行进一步的代码分析。
总结:
经过以上代码调试和分析,得出两条线索,但是一直未能重现该问题。因此,目前只能对现有服务器进行线索一的处理。如果按照线索一处理方式处理后,仍然出现该问题,将对第二步进行深入的分析。

作者 king_wangheng

标签:Invalid,table
0
投稿

猜你喜欢

  • JavaScript实现日期格式化的方法汇总

    2024-04-10 16:19:04
  • pytorch通过训练结果的复现设置随机种子

    2021-04-19 07:58:53
  • MySQL中如何优化order by语句

    2024-01-23 09:49:25
  • Python深度学习pytorch神经网络汇聚层理解

    2022-08-05 11:57:15
  • MySQL索引之主键索引

    2024-01-25 01:52:04
  • jQuery页面滚动浮动层智能定位实例代码

    2024-04-22 22:22:16
  • 删除mysql数据表如何操作

    2024-01-26 01:22:20
  • python库JsonSchema验证JSON数据结构使用详解

    2023-02-14 16:24:27
  • python用opencv批量截取图像指定区域的方法

    2021-10-14 09:07:33
  • win32com操作word之Application&Documents接口学习

    2021-03-01 13:30:34
  • pytest接口测试之fixture传参数request的使用

    2023-03-19 07:40:40
  • 如何将Yolov5的detect.py修改为可以直接调用的函数详解

    2021-12-12 22:21:28
  • python+jinja2实现接口数据批量生成工具

    2022-04-30 14:00:20
  • 浅谈python多线程和队列管理shell程序

    2023-05-18 05:58:25
  • 一些 T-SQL 技巧

    2024-01-26 00:21:16
  • python网络编程 使用UDP、TCP协议收发信息详解

    2021-02-15 14:37:41
  • 学习GO编程必备知识汇总

    2024-04-27 15:30:37
  • 使用Termux在手机上运行Python的详细过程

    2021-10-26 10:23:52
  • 详解Python函数print用法

    2023-06-10 03:47:34
  • Python类属性的延迟计算

    2023-07-22 15:50:33
  • asp之家 网络编程 m.aspxhome.com