BF [2767537] High volume query test on window load doesn't parse context variables

This commit is contained in:
phib 2009-04-16 05:17:13 +00:00
parent 8bafb172a2
commit 825f900fc8
1 changed files with 6 additions and 1 deletions

View File

@ -896,7 +896,12 @@ public final class APanel extends CPanel
if (wh1 == null || wh1.length() == 0)
wh1 = mTab.getWhereClause();
if (wh1 != null && wh1.length() > 0)
where.append(wh1);
{
if (wh1.indexOf('@') == -1)
where.append(wh1);
else // replace variables
where.append(Env.parseContext(m_ctx, m_curWindowNo, wh1, false));
}
//
if (query != null)
{