Browse Source

HPCC-22297 Ensure case of fields is preserved in hqlir output

Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
Gavin Halliday 6 years ago
parent
commit
c0e44ecf24
1 changed files with 4 additions and 0 deletions
  1. 4 0
      ecl/hql/hqlir.cpp

+ 4 - 0
ecl/hql/hqlir.cpp

@@ -2000,6 +2000,10 @@ id_t ExpressionIRPlayer::doProcessExpr(IHqlExpression * expr)
     case no_selfref:
     case no_right:
         break;
+    case no_field:
+        info.id = expr->queryId();
+        info.name = expr->queryName();
+        break;
     default:
         info.name = expr->queryName();
         break;