Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
243ac805
Commit
243ac805
authored
Jul 08, 2013
by
Leo Gordon
Browse files
bugfix: back to using CONCAT -- it looks like || operator is non-standard in MySQL
parent
656cead5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
sql/procedures.mysql
sql/procedures.mysql
+1
-1
No files found.
sql/procedures.mysql
View file @
243ac805
...
...
@@ -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,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment