[Swift-commit] r5494 - provenancedb

lgadelha at ci.uchicago.edu lgadelha at ci.uchicago.edu
Mon Jan 9 12:29:07 CST 2012


Author: lgadelha
Date: 2012-01-09 12:29:07 -0600 (Mon, 09 Jan 2012)
New Revision: 5494

Modified:
   provenancedb/prov-init.sql
Log:
Minor changes


Modified: provenancedb/prov-init.sql
===================================================================
--- provenancedb/prov-init.sql	2012-01-09 17:44:44 UTC (rev 5493)
+++ provenancedb/prov-init.sql	2012-01-09 18:29:07 UTC (rev 5494)
@@ -195,6 +195,15 @@
      q        varchar(2048)
    );
 
+create view function as select * from proc natural join app_inv;
+
+create view dataset as 
+    select file.id, 'mapped' as type, file.name as filename, null as value
+    from file
+  union 
+    select in_mem.id, 'primitive' as type, null as filename, in_mem.value
+    from in_mem;
+
 drop view pgraph_edge;
 create view pgraph_edge as 
        select proc_id as parent,ds_id as child from ds_out




More information about the Swift-commit mailing list