[Swift-commit] r7404 - provenancedb
lgadelha at ci.uchicago.edu
lgadelha at ci.uchicago.edu
Wed Dec 11 05:19:36 CST 2013
Author: lgadelha
Date: 2013-12-11 05:19:35 -0600 (Wed, 11 Dec 2013)
New Revision: 7404
Modified:
provenancedb/prov-init.sql
Log:
Minoe updates
Modified: provenancedb/prov-init.sql
===================================================================
--- provenancedb/prov-init.sql 2013-12-11 05:37:51 UTC (rev 7403)
+++ provenancedb/prov-init.sql 2013-12-11 11:19:35 UTC (rev 7404)
@@ -388,6 +388,13 @@
app_exec
on (script_to_app_fun_call.function_call_id=app_exec.app_fun_call_id);
+create view script_to_app_exec_with_function_call_annotations as
+ select script_to_app_exec.*, annotation.key as function_call_annotation_key, annotation.numeric_value as function_call_annotation_numeric_value,
+ annotation.text_value as function_call_annotation_text_value
+ from script_to_app_exec
+ left outer join
+ annotation
+ on (function_call_id=entity_id);
create view script_to_app_exec_with_runtime_stats as
select script_to_app_fun_call.*, app_exec.id as app_exec_id, app_exec.start_time as app_exec_start_time,
More information about the Swift-commit
mailing list