Codota Logo
SqlValidatorImpl$Expander.getScope
Code IndexAdd Codota to your IDE (free)

How to use
getScope
method
in
org.apache.calcite.sql.validate.SqlValidatorImpl$Expander

Best Java code snippets using org.apache.calcite.sql.validate.SqlValidatorImpl$Expander.getScope (Showing top 3 results out of 315)

  • Common ways to obtain SqlValidatorImpl$Expander
private void myMethod () {
SqlValidatorImpl$Expander s =
  • Codota IconSqlValidatorImpl sqlValidatorImpl;SqlValidatorScope scope;new Expander(sqlValidatorImpl, scope)
  • Smart code suggestions by Codota
}
origin: apache/flink

  return call.accept(this);
final SqlIdentifier fqId = getScope().fullyQualify(id).identifier;
SqlNode expandedExpr = fqId;
origin: org.apache.calcite/calcite-core

@Override public SqlNode visit(SqlIdentifier id) {
 // First check for builtin functions which don't have
 // parentheses, like "LOCALTIME".
 SqlCall call =
   SqlUtil.makeCall(
     validator.getOperatorTable(),
     id);
 if (call != null) {
  return call.accept(this);
 }
 final SqlIdentifier fqId = getScope().fullyQualify(id).identifier;
 SqlNode expandedExpr = expandDynamicStar(id, fqId);
 validator.setOriginal(expandedExpr, id);
 return expandedExpr;
}
origin: Qihoo360/Quicksql

@Override public SqlNode visit(SqlIdentifier id) {
 // First check for builtin functions which don't have
 // parentheses, like "LOCALTIME".
 SqlCall call =
   SqlUtil.makeCall(
     validator.getOperatorTable(),
     id);
 if (call != null) {
  return call.accept(this);
 }
 final SqlIdentifier fqId = getScope().fullyQualify(id).identifier;
 SqlNode expandedExpr = expandDynamicStar(id, fqId);
 validator.setOriginal(expandedExpr, id);
 return expandedExpr;
}
org.apache.calcite.sql.validateSqlValidatorImpl$ExpandergetScope

Popular methods of SqlValidatorImpl$Expander

  • <init>
  • visit
  • expandDynamicStar

Popular in Java

  • Finding current android device location
  • setContentView (Activity)
  • runOnUiThread (Activity)
  • getSharedPreferences (Context)
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • ArrayList (java.util)
    Resizable-array implementation of the List interface. Implements all optional list operations, and p
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • ImageIO (javax.imageio)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now