如何从 ignite 中提取 SQL Create 语句

How to extract the SQL Create statement from ignite

使用 Apache Ignite,是否可以提取用于创建 table 的 CREATE 语句?例如,您可以在 MySQL 中使用 SHOW CREATE TABLE x 命令执行此操作。

我认为目前无法转储 DML(数据库结构)。特别是因为 CREATE TABLE 只是在 Ignite out of three.

中制作表格的一种方式

但是,您可以通过 JDBC 元数据内省功能查询表、模式和索引。