Pere Miquel Brull 1ecf5607c7
Looker - Fix file extension and blob import (#12232)
* Fix file extension and blob import

* Fix file extension and blob import
2023-06-29 16:14:17 +02:00

30 lines
426 B
Plaintext

include: "*/cats.view"
include: "views/dogs.view.lkml"
explore: cats {
label: "Cats"
join: dogs {
relationship: many_to_one
sql_on: ${cats.name} = ${dogs.name} ;;
}
}
view: birds {
sql_table_name: birds ;;
dimension: name {
type: string
sql: ${TABLE}.name ;;
}
}
explore: birds {
label: "Birds"
join: dogs {
relationship: many_to_one
sql_on: ${cats.name} = ${birds.name} ;;
}
}