Move explore uli_view to a separate explore.lkml file Change-Id: I020c0d9a036e113e917425c2efa876b87bda19e2
diff --git a/hdeist-fdm.model.lkml b/hdeist-fdm.model.lkml index 2c4b903..6007f90 100644 --- a/hdeist-fdm.model.lkml +++ b/hdeist-fdm.model.lkml
@@ -4,10 +4,11 @@ # bozo # wednesday include: "/*.view" +include: "/*.explore" datagroup: hdeist_fdm_default_datagroup { max_cache_age: "1 hour" } persist_with: hdeist_fdm_default_datagroup -explore: uli_view {} +# explore: uli_view {}
diff --git a/uli_explore.explore.lkml b/uli_explore.explore.lkml new file mode 100644 index 0000000..5a9dd8e --- /dev/null +++ b/uli_explore.explore.lkml
@@ -0,0 +1,3 @@ +include: "/*.view" + +explore: uli_view {}
diff --git a/uli_view.view.lkml b/uli_view.view.lkml index 6754673..4b1ce12 100644 --- a/uli_view.view.lkml +++ b/uli_view.view.lkml
@@ -19,6 +19,11 @@ sql: ${TABLE}.usage_date ;; } + dimension: zork { + type: string + sql: 'zork' ;; + } + measure: count { type: count }