HybridTable
Examples
Python
hybrid_table = HybridTable(
name="some_hybrid_table",
columns=[Column(name="col1", type="STRING")],
owner="SYSADMIN",
comment="This is a hybrid table."
)YAML
hybrid_tables:
- name: some_hybrid_table
columns:
- name: col1
type: STRING
owner: SYSADMIN
comment: This is a hybrid table.Fields
Last updated