diff --git a/cave/com.raytheon.uf.viz.coopprecip/src/com/raytheon/uf/viz/coopprecip/CoopPrecipDataCubeAdapter.java b/cave/com.raytheon.uf.viz.coopprecip/src/com/raytheon/uf/viz/coopprecip/CoopPrecipDataCubeAdapter.java index 149c0bff73..81182255cb 100644 --- a/cave/com.raytheon.uf.viz.coopprecip/src/com/raytheon/uf/viz/coopprecip/CoopPrecipDataCubeAdapter.java +++ b/cave/com.raytheon.uf.viz.coopprecip/src/com/raytheon/uf/viz/coopprecip/CoopPrecipDataCubeAdapter.java @@ -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. * * * @@ -177,7 +179,7 @@ public class CoopPrecipDataCubeAdapter implements IDataCubeAdapter { private PointDataContainer getData(String nnnid) throws VizException { List queryResult = DirectDbQuery.executeQuery( - "select createtime, product from stdtextproducts where nnnid = '" + "select refTime, product from stdtextproducts where nnnid = '" + nnnid + "'", "fxa", DirectDbQuery.QueryLanguage.SQL); List times = new ArrayList(queryResult.size()); List products = new ArrayList(queryResult.size());