Sfoglia il codice sorgente

Merge pull request #12648 from ghalliday/issue22297

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

Reviewed-By: Shamser Ahmed <shamser.ahmed@lexisnexis.co.uk>
Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 6 anni fa
parent
commit
5a98bf82d2
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  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;