Skip to content
Snippets Groups Projects
Commit 243ac805 authored by Leo Gordon's avatar Leo Gordon
Browse files

bugfix: back to using CONCAT -- it looks like || operator is non-standard in MySQL

parent 656cead5
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@
-- select * from progress where retry_count>1; # only show jobs that have been tried more than once
CREATE OR REPLACE VIEW progress AS
SELECT a.logic_name || '(' || a.analysis_id || ')' analysis_name_and_id,
SELECT CONCAT( a.logic_name, '(', a.analysis_id, ')') analysis_name_and_id,
MIN(rc.name) resource_class,
j.status,
j.retry_count,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment