Package org.apache.drill.exec.compile.bytecode.ValueHolderIden

Examples of org.apache.drill.exec.compile.bytecode.ValueHolderIden.ValueHolderSub.transfer()


        ReplacingBasicValue current = local(var);
        // if local var is set, then transfer to it to the existing holders in the local position.
        if (current != null) {
          if (oldToNew.get(current.getIndex()).iden() == from.iden()) {
            int targetFirst = oldToNew.get(current.index).first();
            from.transfer(this, targetFirst);
            return;
          }
        }

        // if local var is not set, then check map to see if existing holders are mapped to local var.
View Full Code Here


        ReplacingBasicValue current = local(var);
        // if local var is set, then transfer to it to the existing holders in the local position.
        if(current != null){
          if(oldToNew.get(current.getIndex()).iden() == from.iden()){
            int targetFirst = oldToNew.get(current.index).first();
            from.transfer(this, targetFirst);
            return;
          }
        }

        // if local var is not set, then check map to see if existing holders are mapped to local var.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.