show_hg_table_ddl
Generate the DDL script for a table, view, or foreign table in a Hologres database by specifying the schema and table names.
Instructions
Show DDL script for a table, view, or foreign table in Hologres database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
schema | Yes | Schema name in Hologres database | |
table | Yes | Table name in Hologres database |
Input Schema (JSON Schema)
{
"properties": {
"schema": {
"description": "Schema name in Hologres database",
"type": "string"
},
"table": {
"description": "Table name in Hologres database",
"type": "string"
}
},
"required": [
"schema",
"table"
],
"type": "object"
}