Tabnine Logo
WhereClause.getWhereExpr
Code IndexAdd Tabnine to your IDE (free)

How to use
getWhereExpr
method
in
org.apache.asterix.lang.common.clause.WhereClause

Best Java code snippets using org.apache.asterix.lang.common.clause.WhereClause.getWhereExpr (Showing top 13 results out of 315)

origin: apache/asterixdb

  @Override
  public boolean equals(Object object) {
    if (this == object) {
      return true;
    }
    if (!(object instanceof WhereClause)) {
      return false;
    }
    WhereClause whereClause = (WhereClause) object;
    return whereExpr.equals(whereClause.getWhereExpr());
  }
}
origin: apache/asterixdb

@Override
public Void visit(WhereClause whereClause, Collection<VariableExpr> freeVars) throws CompilationException {
  whereClause.getWhereExpr().accept(this, freeVars);
  return null;
}
origin: apache/asterixdb

@Override
public Boolean visit(WhereClause wc, ILangExpression arg) throws CompilationException {
  return visit(wc.getWhereExpr(), arg);
}
origin: apache/asterixdb

@Override
public Void visit(WhereClause wc, Void arg) throws CompilationException {
  wc.getWhereExpr().accept(this, arg);
  return null;
}
origin: apache/asterixdb

@Override
public Void visit(WhereClause wc, Integer step) throws CompilationException {
  out.print(skip(step) + "where ");
  wc.getWhereExpr().accept(this, step + 1);
  out.println();
  return null;
}
origin: apache/asterixdb

@Override
public Void visit(WhereClause wc, Integer step) throws CompilationException {
  out.println(skip(step) + "Where");
  wc.getWhereExpr().accept(this, step + 1);
  return null;
}
origin: apache/asterixdb

@Override
public Expression visit(WhereClause whereClause, ILangExpression arg) throws CompilationException {
  whereClause.setWhereExpr(visit(whereClause.getWhereExpr(), whereClause));
  return null;
}
origin: apache/asterixdb

@Override
public Expression visit(WhereClause whereClause, ILangExpression arg) throws CompilationException {
  whereClause.setWhereExpr(visit(whereClause.getWhereExpr(), whereClause));
  return null;
}
origin: apache/asterixdb

@Override
public Boolean visit(WhereClause wc, List<FunctionDecl> arg) throws CompilationException {
  Pair<Boolean, Expression> p = inlineUdfsInExpr(wc.getWhereExpr(), arg);
  wc.setWhereExpr(p.second);
  return p.first;
}
origin: apache/asterixdb

do {
  WhereClause whereClause = (WhereClause) clause;
  expressions.add(whereClause.getWhereExpr());
  if (++index >= size) {
    break;
origin: apache/asterixdb

@Override
public WhereClause visit(WhereClause whereClause, Void arg) throws CompilationException {
  WhereClause copy = new WhereClause((Expression) whereClause.getWhereExpr().accept(this, arg));
  copy.setSourceLocation(whereClause.getSourceLocation());
  return copy;
}
origin: apache/asterixdb

@Override
public Pair<ILangExpression, VariableSubstitutionEnvironment> visit(WhereClause wc,
    VariableSubstitutionEnvironment env) throws CompilationException {
  Pair<ILangExpression, VariableSubstitutionEnvironment> p1 = wc.getWhereExpr().accept(this, env);
  WhereClause newW = new WhereClause((Expression) p1.first);
  newW.setSourceLocation(wc.getSourceLocation());
  return new Pair<>(newW, p1.second);
}
origin: apache/asterixdb

@Override
public Pair<ILogicalOperator, LogicalVariable> visit(WhereClause w, Mutable<ILogicalOperator> tupSource)
    throws CompilationException {
  Pair<ILogicalExpression, Mutable<ILogicalOperator>> p = langExprToAlgExpression(w.getWhereExpr(), tupSource);
  SelectOperator s = new SelectOperator(new MutableObject<>(p.first), false, null);
  s.getInputs().add(p.second);
  s.setSourceLocation(w.getSourceLocation());
  return new Pair<>(s, null);
}
org.apache.asterix.lang.common.clauseWhereClausegetWhereExpr

Popular methods of WhereClause

  • <init>
  • setWhereExpr
  • getSourceLocation
  • setSourceLocation

Popular in Java

  • Reading from database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • onCreateOptionsMenu (Activity)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Option (scala)
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now