Skip to content

Commit

Permalink
issue #381: Stop looking for fvs_variant in fvs_tree_id. It's no long…
Browse files Browse the repository at this point in the history
…er in there. This fixes the view affected trees button.
  • Loading branch information
lbross committed Jan 28, 2025
1 parent 020bbef commit 16ceb14
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/uc_processor_tree_spc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3095,8 +3095,7 @@ private void btnView_Click(object sender, EventArgs e)
"a.* " +
"FROM " + m_oQueries.m_oFIAPlot.m_strTreeTable + " a," +
"fvsouttreetemp2 b " +
"WHERE MID(a.fvs_tree_id,1,2)='" + strFvsVariant + "' AND " +
"a.fvs_tree_id=b.fvs_tree_id AND " +
"WHERE a.fvs_tree_id=b.fvs_tree_id AND " +
"a.biosum_cond_id=b.biosum_cond_id AND " +
"a.spcd=" + strFiaSpCd + " AND " +
"TRIM(b.fvs_species)='" + strFvsSpCd + "'";
Expand Down

0 comments on commit 16ceb14

Please sign in to comment.