mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
17 lines
308 B
YAML
17 lines
308 B
YAML
|
|
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
|