Table
Examples
Python
table = Table(
name="some_table",
columns=[{"name": "col1", "data_type": "STRING"}],
owner="SYSADMIN",
)YAML
tables:
- name: some_table
columns:
- name: col1
data_type: STRING
owner: SYSADMINFields
Last updated