Changes to queries to try and fix coreName/locationDesc display bugs, but still broken. Works slightly better than last broken version though. Relates to issue #26

This commit is contained in:
jkaplon 2015-07-24 14:23:34 -04:00
parent 8ae19ac07f
commit 76fd5ef9a1

View File

@ -65,7 +65,7 @@ app.get('/', function(req, res){
var devIndexQry =
"select coreId, coreName, locationDesc, max(published_at) as MaxPub, max(status) as MaxStatus " +
"from Alerts otbl " +
"where published_at = (select min(published_at) from Alerts where coreId = otbl.coreId) " +
"where coreName = (select max(coreName) from Alerts where coreId = otbl.coreId) " +
"group by coreId, coreName, locationDesc;";
db.all(devIndexQry, function(err, rows){
if(err !== null) {
@ -88,7 +88,7 @@ app.get('/core/edit/:id', function(req, res){
var coreId = req.params.id;
console.log("GET /core/edit/" + coreId + ", " + JSON.stringify(d, 4));
db.all("select coreName, locationDesc from Alerts where coreId = ? limit 1;", coreId, function(err, rows){
db.all("select max(coreName), max(locationDesc) from Alerts where coreId = ? group by coreId;", coreId, function(err, rows){
if(err !== null) {
console.log(err);
} else {
@ -138,7 +138,7 @@ app.get('/core/:id', function(req, res){
var d = new Date();
var coreId = req.params.id;
console.log("GET /core/" + coreId + ", " + JSON.stringify(d, 4));
db.all("SELECT coreId, published_at, status, coreName FROM Alerts WHERE coreId = ? ORDER BY published_at DESC LIMIT 30;", coreId, function(err, rows){
db.all("SELECT coreId, published_at, status, max(coreName) FROM Alerts WHERE coreId = ? ORDER BY published_at DESC LIMIT 30;", coreId, function(err, rows){
if(err !== null) {
console.log(err);
} else {