ktx/python/ktx-sl/sources/tpch/nation.yaml

17 lines
308 B
YAML
Raw Permalink Normal View History

2026-05-10 23:12:26 +02:00
name: nation
table: public.nation
grain: [n_nationkey]
columns:
- name: n_nationkey
type: number
- name: n_name
type: string
- name: n_regionkey
type: number
- name: n_comment
type: string
joins:
- to: region
"on": n_regionkey = region.r_regionkey
relationship: many_to_one