Documentation Home
MySQL 8.3 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 40.8Mb
PDF (A4) - 40.9Mb
Man Pages (TGZ) - 294.0Kb
Man Pages (Zip) - 409.0Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb
Excerpts from this Manual

29.12.12.1 ndb_sync_pending_objects 表

该表提供了有关 NDB 数据库对象的信息,这些对象检测到不匹配并等待在 NDB 字典和 MySQL 数据字典之间同步。

等待同步的 NDB 数据库对象的示例信息:

mysql> SELECT * FROM performance_schema.ndb_sync_pending_objects;
+-------------+------+----------------+
| SCHEMA_NAME | NAME |  TYPE          |
+-------------+------+----------------+
| NULL        | lg1  |  LOGFILE GROUP |
| NULL        | ts1  |  TABLESPACE    |
| db1         | NULL |  SCHEMA        |
| test        | t1   |  TABLE         |
| test        | t2   |  TABLE         |
| test        | t3   |  TABLE         |
+-------------+------+----------------+

ndb_sync_pending_objects 表具有以下列:

  • SCHEMA_NAME:等待同步的对象所在的模式(数据库)的名称;对于表空间和日志文件组,这是 NULL

  • NAME:等待同步的对象的名称;如果对象是模式,则为 NULL

  • TYPE:等待同步的对象的类型;这可以是 LOGFILE GROUPTABLESPACESCHEMATABLE