Skip to content
Snippets Groups Projects
Commit 8103320e authored by felmer's avatar felmer
Browse files

SSDM-3130: fixing bug caused by backporting

SVN: 35671
parent 14997289
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ public interface ISecondaryEntityListingQuery extends BaseQuery ...@@ -39,7 +39,7 @@ public interface ISecondaryEntityListingQuery extends BaseQuery
{ {
public static final String SELECT_FROM_EXPERIMENTS public static final String SELECT_FROM_EXPERIMENTS
= "select e.id as id, e.code as e_code, e.perm_id as e_permid, e.del_id as del_id, et.code as et_code, " = "select e.id as id, e.code as e_code, e.perm_id as e_permid, e.del_id as del_id, et.code as et_code, "
+ "p.code as p_code, p.id as p_id, p.perm_id as p_perm_id, g.code as spc_code, g.dbin_id as dbin_id from experiments e " + "p.code as p_code, p.id as p_id, p.perm_id as p_perm_id, g.code as spc_code from experiments e "
+ "join experiment_types et on e.exty_id=et.id join projects p on e.proj_id=p.id " + "join experiment_types et on e.exty_id=et.id join projects p on e.proj_id=p.id "
+ "join spaces g on p.space_id=g.id"; + "join spaces g on p.space_id=g.id";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment