@Override
public Object getSelectionBaseOnName(String tableName) {
try{
// if(!fs.exists(new Path(tableName))) return null;
ReadEntryWithPath re = new ReadEntryWithPath(tableName);
return Lists.newArrayList(re);
}catch(Exception e){
logger.warn(String.format("Failure while checking table name %s.", tableName), e);
return null;
}