Issue #1055: Fix coop precip breakage from Wes2Bridge db changes.

Change-Id: Idbbbf7622483c426efc715f9e8eb185be6d47bad

Former-commit-id: 06e789e986 [formerly b587c1ea4f] [formerly 06e789e986 [formerly b587c1ea4f] [formerly f2795370d1 [formerly da6811db78e3fcf57acc25e417ec8319c1dceecf]]]
Former-commit-id: f2795370d1
Former-commit-id: 35ac266c34 [formerly e51d931a5a]
Former-commit-id: 2ba2b982a0
This commit is contained in:
David Gillingham 2012-08-14 13:36:51 -05:00
parent 5e82400554
commit 767fdf56a1

View file

@ -63,6 +63,8 @@ import com.vividsolutions.jts.geom.Coordinate;
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Dec 3, 2010 bsteffen Initial creation
* Aug 14,2012 #1055 dgilling Fix getData regression from
* fxatext schema changes.
*
* </pre>
*
@ -177,7 +179,7 @@ public class CoopPrecipDataCubeAdapter implements IDataCubeAdapter {
private PointDataContainer getData(String nnnid) throws VizException {
List<Object[]> queryResult = DirectDbQuery.executeQuery(
"select createtime, product from stdtextproducts where nnnid = '"
"select refTime, product from stdtextproducts where nnnid = '"
+ nnnid + "'", "fxa", DirectDbQuery.QueryLanguage.SQL);
List<Long> times = new ArrayList<Long>(queryResult.size());
List<String> products = new ArrayList<String>(queryResult.size());