You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privateconststringINSERT_RUN_INTO_RESULT_TABLE_SQL="insert into results (base_run_id, compare_run_id, status) values (@base_run_id, @compare_run_id, @status);";
83
82
privateconststringUPDATE_RUN_IN_RESULT_TABLE="update results set status = @status where (base_run_id = @base_run_id and compare_run_id = @compare_run_id)";
84
83
85
-
privateconststringSQL_GET_RUN="select run_id from runs where run_id=@run_id";
86
84
87
85
privateconststringGET_COMPARISON_RESULTS="select * from findings where comparison_id = @comparison_id and result_type=@result_type order by level des;";
88
86
privateconststringGET_SERIALIZED_RESULTS="select change_type, Serialized from file_system_monitored where run_id = @run_id";
@@ -92,7 +90,6 @@ public static class DatabaseManager
92
90
privateconststringSQL_QUERY_ANALYZED="select * from results where status = @status";//lgtm [cs/literal-as-local]
93
91
94
92
privateconststringSQL_CHECK_IF_COMPARISON_PREVIOUSLY_COMPLETED="select * from results where base_run_id=@base_run_id and compare_run_id=@compare_run_id";//lgtm [cs/literal-as-local]
privateconststringSQL_GET_RESULT_TYPES="select * from runs where run_id = @base_run_id or run_id = @compare_run_id";//lgtm [cs/literal-as-local]
97
94
98
95
privateconststringGET_MONITOR_RESULTS="select * from file_system_monitored where run_id=@run_id order by timestamp limit @offset,@limit;";//lgtm [cs/literal-as-local]
0 commit comments