GitHub user SuJinpei opened a pull request: https://github.com/apache/incubator-trafodion/pull/1292
[TRAFODION-2797] odb variable name conflict in function Oload2: ``` static void Oload2(int eid) { ..... unsigned int nldr=0, /* number of loaders */ k=0, /* input file field number */ m = 0, /* rowset array record number */ i=0, /* loop variable */ .... size_t i = 0; //<----- the name conflict with outer scope name cause some bug while (i < len) { ... for(i=0;i<nldr;i++) { ... } } } ``` You can merge this pull request into a Git repository by running: $ git pull https://github.com/SuJinpei/incubator-trafodion trafodion-2797 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/incubator-trafodion/pull/1292.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #1292 ---- commit f878f5e7a92ed0f5246bd6c890cbf4b622db52fb Author: SuJinpei <873118...@qq.com> Date: 2017-11-07T00:57:48Z fix TRAFODION-2797 ---- ---