001 002package gudusoft.gsqlparser.dlineage.dataflow.model; 003 004import gudusoft.gsqlparser.dlineage.util.Pair3; 005import gudusoft.gsqlparser.nodes.TObjectName; 006 007public class StageLocation extends TableColumn { 008 009 public StageLocation(Table stage, TObjectName location) { 010 super(stage, location); 011 this.name = location.toString(); 012 this.startPosition = new Pair3<Long, Long, String>(-1l, -1l, ModelBindingManager.getGlobalHash()); 013 this.endPosition = new Pair3<Long, Long, String>(-1l, -1l, ModelBindingManager.getGlobalHash()); 014 } 015 016 017 018}