Codota Logo
SqlDialect.supportsWindowFunctions
Code IndexAdd Codota to your IDE (free)

How to use
supportsWindowFunctions
method
in
org.apache.calcite.sql.SqlDialect

Best Java code snippets using org.apache.calcite.sql.SqlDialect.supportsWindowFunctions (Showing top 2 results out of 315)

  • Common ways to obtain SqlDialect
private void myMethod () {
SqlDialect s =
  • Codota IconSqlDialectFactory dialectFactory;DataSource dataSource;JdbcSchema.createDialect(dialectFactory, dataSource)
  • Codota IconSqlDialect.DatabaseProduct sqlDialectDatabaseProduct;sqlDialectDatabaseProduct.getDialect()
  • Codota IconSqlDialect.Context context;new HiveSqlDialect(context)
  • Smart code suggestions by Codota
}
origin: Qihoo360/Quicksql

/** Creates a JdbcProjectRule. */
public JdbcProjectRule(final JdbcConvention out,
  RelBuilderFactory relBuilderFactory) {
 super(Project.class, (Predicate<Project>) project ->
     (out.dialect.supportsWindowFunctions()
       || !RexOver.containsOver(project.getProjects(), null))
       && !userDefinedFunctionInProject(project),
   Convention.NONE, out, relBuilderFactory, "JdbcProjectRule");
}
origin: org.apache.calcite/calcite-core

/** Creates a JdbcProjectRule. */
public JdbcProjectRule(final JdbcConvention out,
  RelBuilderFactory relBuilderFactory) {
 super(Project.class, (Predicate<Project>) project ->
     (out.dialect.supportsWindowFunctions()
       || !RexOver.containsOver(project.getProjects(), null))
       && !userDefinedFunctionInProject(project),
   Convention.NONE, out, relBuilderFactory, "JdbcProjectRule");
}
org.apache.calcite.sqlSqlDialectsupportsWindowFunctions

Javadoc

Returns whether this dialect supports window functions (OVER clause).

Popular methods of SqlDialect

  • quoteStringLiteral
    Converts a string into a string literal. For example, can't run becomes 'can''t run'.
  • unparseCall
  • <init>
    Creates a SqlDialect.
  • quoteIdentifier
    Quotes a multi-part identifier.
  • supportsAggregateFunction
  • supportsCharSet
    Returns whether the dialect supports character set names as part of a data type, for instance VARCHA
  • allowsAs
  • containsNonAscii
    Returns whether the string contains any characters outside the comfortable 7-bit ASCII range (32 thr
  • defaultNullDirection
    Returns whether NULL values are sorted first or last, in this dialect, in an ORDER BY item of a give
  • emulateNullDirection
    Returns the SqlNode for emulating the null direction for the given field or null if no emulation ne
  • getCalendarPolicy
  • getCastSpec
  • getCalendarPolicy,
  • getCastSpec,
  • getDatabaseProduct,
  • getNullCollation,
  • hasImplicitTableAlias,
  • identifierNeedsToBeQuoted,
  • quoteStringLiteralUnicode,
  • quoteTimestampLiteral,
  • rewriteSingleValueExpr,
  • supportsAliasedValues

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getApplicationContext (Context)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • getSharedPreferences (Context)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Timer (java.util)
    A facility for threads to schedule tasks for future execution in a background thread. Tasks may be s
  • Runner (org.openjdk.jmh.runner)
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
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