Skip to content

Commit

Permalink
Add missing commas between entries in job.getAggEcnt, job.getAggVl1l2…
Browse files Browse the repository at this point in the history
…, and job.getAggVal1l2
  • Loading branch information
bikegeek committed Aug 21, 2024
1 parent 2a3327d commit 9271f30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions java/edu/ucar/metviewer/db/mysql/MysqlAppDatabaseManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -1949,8 +1949,8 @@ public List<String> buildPlotSql(
+ "\n ld.n_ge_obs,"
+ "\n ld.me_ge_obs,"
+ "\n ld.n_lt_obs,"
+ "\n ld.me_lt_obs"
+ "\n ld.ign_conv_oerr"
+ "\n ld.me_lt_obs,"
+ "\n ld.ign_conv_oerr,"
+ "\n ld.ign_corr_oerr";
} else if (job.getAggPct()) {

Expand Down Expand Up @@ -2002,7 +2002,7 @@ public List<String> buildPlotSql(
} else if (job.getAggVal1l2()) {
selectStat += ",\n 'NA' stat_value,\n ld.total,\n ld.ufabar,\n ld.vfabar,\n "
+ "ld.uoabar,\n ld.voabar,\n ld.uvfoabar,\n ld.uvffabar,\n"
+ " ld.uvooabar,\n ld.fa_speed_bar,\n ld.oa_speed_bar "
+ " ld.uvooabar,\n ld.fa_speed_bar,\n ld.oa_speed_bar, "
+ "\n ld.version, \n ld.total_dir, \n ld.dira_me, \n ld.dira_mae, \n ld.dira_mse";
} else if (job.getCalcCtc()) {
selectStat += ",\n ld.total, ld.fy_oy, ld.fy_on, ld.fn_oy, ld.fn_on, "
Expand Down

0 comments on commit 9271f30

Please sign in to comment.