Get DDL Statement Action

    Description

    Used to get the table creation statement, partition creation statement and rollup statement of the specified table.

    None

    Query parameters

    • table

    None

    Response

    1. Get the DDL statement of the specified table

      1. GET GET /api/_get_ddl?db=db1&table=tbl1
      2. {
      3. "msg": "OK",
      4. "data": {
      5. "create_table": ["CREATE TABLE `tbl1` (\n `k1` int(11) NULL COMMENT \"\",\n `k2` int(11) NULL COMMENT \"\"\n) ENGINE=OLAP\nDUPLICATE KEY(`k1`, `k2`)\nCOMMENT \"OLAP\"\nDISTRIBUTED BY HASH(`k1`) BUCKETS 1\nPROPERTIES (\n\"replication_num\" = \"1\",\n\"version_info\" = \"1,0\",\n\"in_memory\" = \"false\",\n\"storage_format\" = \"DEFAULT\"\n);"],
      6. "create_rollup": []
      7. },
      8. "count": 0