a Change-Id: I4cdfa3d895a8ac9dd0393b720e3c70993329ef37
diff --git a/fast_changes.view.lkml b/fast_changes.view.lkml new file mode 100644 index 0000000..baabb4b --- /dev/null +++ b/fast_changes.view.lkml
@@ -0,0 +1,14 @@ +view: fast_changes { + + derived_table: { + sql: + SELECT 'fast changes' AS value + ;; + } + + dimension: value { + type: string + sql: ${TABLE}.value ;; + } + +}
diff --git a/l4c_demo.view.lkml b/l4c_demo.view.lkml deleted file mode 100644 index 26ef520..0000000 --- a/l4c_demo.view.lkml +++ /dev/null
@@ -1,42 +0,0 @@ -######################## -# Purpose: L4C Testing -# Author: Data Team -# Date: 05/24/2021 -####################### - -view: l4c_demo { - - sql_table_name: analysis.users ;; - - dimension: is_plugin_name_archive { - description: "Returns yes if the plugin name is archive" - type: yesno - sql: ${plugin_name} = "ARCHIVE" ;; - } - - dimension: plugin_name { - description: "The name used to refer to the plugin in statements INSTALL PLUGIN and UNINSTALL PLUGIN." - view_label: "Plug-In" - label: "Name" - type: string - sql: ${TABLE}.PLUGIN_NAME ;; - } - - dimension: plugin_type { - description: "The type of plugin, such as STORAGE ENGINE, INFORMATION_SCHEMA, or AUTHENTICATION." - type: string - sql: ${TABLE}.PLUGIN_TYPE ;; - } - -} - -## Not Hello -## Not Hello -## Not Hello - -## hello -## hello - -## Not Hello -## Not Hello -## Not Hello
diff --git a/new_model_testing.model.lkml b/new_model_testing.model.lkml index c9d5e73..ce6be15 100644 --- a/new_model_testing.model.lkml +++ b/new_model_testing.model.lkml
@@ -2,11 +2,9 @@ persist_for: "0 seconds" -include: "testing.view.lkml" +include: "fast_changes.view.lkml" include: "testing_12.view.lkml" explore: testing_12 {} -## testing - -## testing on line 12 +explore: fast_changes {}
diff --git a/testing.view.lkml b/testing.view.lkml deleted file mode 100644 index 344e83f..0000000 --- a/testing.view.lkml +++ /dev/null
@@ -1,37 +0,0 @@ -######################## -# Purpose: L4C Testing -# Author: Data Team -# Date: 05/24/2021 -####################### - -view: testing { - - derived_table: { - sql: - SELECT 200 AS value, CURRENT_TIMESTAMP() AS time - UNION ALL - SELECT 100 AS value, CURRENT_TIMESTAMP() AS time - ;; - } - - dimension: value_raw { - hidden: yes - type: yesno - sql: ${TABLE}.value ;; - } - - dimension_group: time { - hidden: yes - datatype: timestamp - type: time - sql: ${TABLE}.time ;; - } - - - measure: value { - type: sum - sql: ${value_raw} ;; - - } - -}