endAlias = null;
}
if(startCol < 0){
String msg = "Invalid start column position in " +
"range projection (..) " + startCol;
throw new PlanValidationException(this, msg, 2270, PigException.BUG);
}
if(endCol > 0 && startCol > endCol){
String msg = "start column appears after end column in " +
"range projection (..) . Start column position " + startCol +
" End column position " + endCol;
throw new PlanValidationException(this, msg, 1127, PigException.INPUT);
}
}else{
setColNum(findColNum(alias));
}
}