Issue #1156 sort by ts_rank in the TimeSeriesDataManager ingestfilter query.
Former-commit-id: ecbe261f768452fc30a6641d25f5303565d18cbb
This commit is contained in:
parent
ce5430a625
commit
f2b97d3170
1 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ public class TimeSeriesDataManager extends HydroDataManager {
|
|||
|
||||
private static final String TIME_SERIES_DATA_QUERY = "select lid,obstime,lid,product_id from latestobsvalue";
|
||||
|
||||
private String INGEST_FILTER_QUERY = "select lid,pe,ts,extremum,dur from ingestfilter where lid=':lid' and ingest = 'T' order by pe asc,dur asc,ts asc,extremum asc";
|
||||
private String INGEST_FILTER_QUERY = "select lid,pe,ts,extremum,dur from ingestfilter where lid=':lid' and ingest = 'T' order by pe asc,ts_rank asc,dur asc,ts asc,extremum asc";
|
||||
|
||||
private String SHEF_PE_QUERY = "select name||' '|| eng_unit from shefpe where pe=':pe'";
|
||||
|
||||
|
@ -1386,4 +1386,4 @@ public class TimeSeriesDataManager extends HydroDataManager {
|
|||
public Map<String, String> getStationDisplayMap() {
|
||||
return stnDisplayMap;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue