adding l4c_demo via personal branch
Change-Id: I12c9c038ecd99a9bb1971b83411937a794d0c48a
diff --git a/bare_repo_v1.view.lkml b/bare_repo_v1.view.lkml
index fa5576e..faa4adb 100644
--- a/bare_repo_v1.view.lkml
+++ b/bare_repo_v1.view.lkml
@@ -1,7 +1,31 @@
-view: bare_repo_v1 {
+########################
+# Project: L4C Testing
+# Author: Data Team
+# Date: 04/19/2021
+#######################
-## adding something on line 3, original line
+view: l4c_demo {
-## adding something ## adding something
+ sql_table_name: information_schema.ALL_PLUGINS ;;
+
+ 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 ;;
+ }
}