Skip to content
Snippets Groups Projects
Commit 89b42e8e authored by Adam Laskowski's avatar Adam Laskowski
Browse files

SSDM-55: Added ordering by id of properties

parent c03407dc
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -117,7 +117,7 @@ public interface DataSetQuery extends ObjectQuery
+ "left join material_types mt on m.maty_id = mt.id "
+ "join data_set_type_property_types etpt on p.dstpt_id = etpt.id "
+ "join property_types pt on etpt.prty_id = pt.id "
+ "where p.ds_id = any(?{1})", parameterBindings = { LongSetMapper.class },
+ "where p.ds_id = any(?{1}) order by id", parameterBindings = { LongSetMapper.class },
resultSetBinding = PropertyRecordDataObjectBinding.class, fetchSize = FETCH_SIZE)
public List<PropertyRecord> getProperties(LongSet dataSetIds);
......
......@@ -85,7 +85,7 @@ public interface ExperimentQuery extends ObjectQuery
+ "left join material_types mt on m.maty_id = mt.id "
+ "join experiment_type_property_types etpt on p.etpt_id = etpt.id "
+ "join property_types pt on etpt.prty_id = pt.id "
+ "where p.expe_id = any(?{1})", parameterBindings = { LongSetMapper.class },
+ "where p.expe_id = any(?{1}) order by id", parameterBindings = { LongSetMapper.class },
resultSetBinding = PropertyRecordDataObjectBinding.class, fetchSize = FETCH_SIZE)
public List<PropertyRecord> getProperties(LongSet experimentIds);
......
......@@ -82,7 +82,7 @@ public interface SampleQuery extends ObjectQuery
+ "left join material_types mt on m.maty_id = mt.id "
+ "join sample_type_property_types etpt on p.stpt_id = etpt.id "
+ "join property_types pt on etpt.prty_id = pt.id "
+ "where p.samp_id = any(?{1})", parameterBindings = { LongSetMapper.class },
+ "where p.samp_id = any(?{1}) order by id", parameterBindings = { LongSetMapper.class },
resultSetBinding = PropertyRecordDataObjectBinding.class, fetchSize = FETCH_SIZE)
public List<PropertyRecord> getProperties(LongSet sampleIds);
......
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