佳木斯湛栽影视文化发展公司

主頁 > 知識(shí)庫 > Apache Calcite 實(shí)現(xiàn)方言轉(zhuǎn)換的代碼

Apache Calcite 實(shí)現(xiàn)方言轉(zhuǎn)換的代碼

熱門標(biāo)簽:百度競(jìng)價(jià)點(diǎn)擊價(jià)格的計(jì)算公式 阿里云 智能手機(jī) 檢查注冊(cè)表項(xiàng) 硅谷的囚徒呼叫中心 使用U盤裝系統(tǒng) 網(wǎng)站建設(shè) 美圖手機(jī)

定義

Calcite能夠通過解析Sql為SqlNode,再將SqlNode轉(zhuǎn)化為特定數(shù)據(jù)庫的方言的形式實(shí)現(xiàn)Sql的統(tǒng)一。

實(shí)現(xiàn)

在Calcite中實(shí)現(xiàn)方言轉(zhuǎn)換的主要類是SqlDialect基類,其具體的變量含義如下:

public class SqlDialect {

BUILT_IN_OPERATORS_LIST: 支持的內(nèi)置定義函數(shù)或者運(yùn)算符(例如:abs and..)

// 列 表的標(biāo)識(shí)符
String identifierQuoteString:    標(biāo)識(shí)符的開始符號(hào)
String identifierEndQuoteString: 標(biāo)識(shí)符的結(jié)束符號(hào)
String identifierEscapedQuote: (暫時(shí)沒有弄明白這個(gè)在做什么,像是字符串中的轉(zhuǎn)義符?)

// 常量的標(biāo)識(shí)符
String literalQuoteString:    常量的開始符號(hào)
String literalEndQuoteString: 常量的結(jié)束符號(hào)
String literalEscapedQuote:(暫時(shí)沒有弄明白這個(gè)在做什么,像是字符串中的轉(zhuǎn)義符?)

DatabaseProduct databaseProduct: 所屬的數(shù)據(jù)庫產(chǎn)品
NullCollation nullCollation: 在進(jìn)行排序查詢式,空值的返回順序
RelDataTypeSystem dataTypeSystem: 數(shù)據(jù)類型

// 和解析相關(guān)
Casing unquotedCasing: 大小寫轉(zhuǎn)換
Casing quotedCasing: 大小寫轉(zhuǎn)換
boolean caseSensitive: 是否大小寫敏感(列名 表明 函數(shù)名等)
}
// 方法區(qū)(不同的數(shù)據(jù)源根據(jù)細(xì)節(jié)的不同實(shí)現(xiàn)自定義的復(fù)寫方法)
allowsAs
configureParser
configureParser
containsNonAscii
create
defaultNullDirection
emptyContext
emulateJoinTypeForCrossJoin
emulateNullDirection
emulateNullDirectionWithIsNull
getCalendarPolicy
getCastSpec
getConformance
getDatabaseProduct
getNullCollation
getProduct
getQuotedCasing
getQuoting
getSingleRowTableName
getTypeSystem
getUnquotedCasing
hasImplicitTableAlias
identifierNeedsQuote
isCaseSensitive
quoteIdentifier
quoteIdentifier
quoteIdentifier
quoteStringLiteral
quoteStringLiteral
quoteStringLiteralUnicode
quoteTimestampLiteral
requiresAliasForFromItems
rewriteSingleValueExpr
supportsAggregateFunction
supportsAliasedValues
supportsCharSet
supportsDataType
supportsFunction
supportsGroupByWithCube
supportsGroupByWithRollup
supportsImplicitTypeCoercion
supportsNestedAggregations
supportsOffsetFetch
supportsWindowFunctions
unparseCall
unparseDateTimeLiteral
unparseFetchUsingAnsi
unparseFetchUsingLimit
unparseLimit
unparseOffset
unparseOffsetFetch
unparseSqlDatetimeArithmetic
unparseSqlIntervalLiteral
unparseSqlIntervalQualifier
unparseTopN
unquoteStringLiteral

使用方式Demo

/** Returns SqlNode for type in "cast(column as type)", which might be
  * different between databases by type name, precision etc.
  *
  * <p>If this method returns null, the cast will be omitted. In the default
  * implementation, this is the case for the NULL type, and therefore
  * {@code CAST(NULL AS <nulltype>)} is rendered as {@code NULL}. */
  public SqlNode getCastSpec(RelDataType type)

  這個(gè)方法就可以根據(jù)具體的數(shù)據(jù)源的數(shù)據(jù)類型進(jìn)行轉(zhuǎn)換,例如:

  @Override public SqlNode getCastSpec(RelDataType type) {
    switch (type.getSqlTypeName()) {
    case VARCHAR:
      // MySQL doesn't have a VARCHAR type, only CHAR.
      int vcMaxPrecision = this.getTypeSystem().getMaxPrecision(SqlTypeName.CHAR);
      int precision = type.getPrecision();
      if (vcMaxPrecision > 0 && precision > vcMaxPrecision) {
        precision = vcMaxPrecision;
      }
      return new SqlDataTypeSpec(
          new SqlBasicTypeNameSpec(SqlTypeName.CHAR, precision, SqlParserPos.ZERO),
          SqlParserPos.ZERO);
    }
    return super.getCastSpec(type);
  }

  就可以經(jīng)Sql中的Cast語句Cast為特定的類型:

  final String query = "select cast(\"product_id\" as varchar(50)), \"product_id\" "
       + "from \"product\" ";
   final String expected = "SELECT CAST(`product_id` AS CHAR(50)), `product_id`\n"
       + "FROM `foodmart`.`product`";
// 解析過的SqlNode
sqlNode.toSqlString(CalciteSqlDialect.DEFAULT).getSql();

到此這篇關(guān)于Apache Calcite 實(shí)現(xiàn)方言轉(zhuǎn)換的代碼的文章就介紹到這了,更多相關(guān)Apache Calcite方言轉(zhuǎn)換內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

標(biāo)簽:通遼 山南 懷化 湘潭 賀州 煙臺(tái) 湖北 黃山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Apache Calcite 實(shí)現(xiàn)方言轉(zhuǎn)換的代碼》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    江西省| 松江区| 安多县| 永清县| 河津市| 佛学| 鹤山市| 田东县| 洞头县| 渝中区| 肥东县| 毕节市| 宜兰市| 临高县| 偏关县| 吴川市| 云林县| 交城县| 砀山县| 奇台县| 耿马| 吉木乃县| 神池县| 阿拉善左旗| 衡阳县| 邹平县| 青岛市| 金湖县| 改则县| 佛冈县| 深州市| 宜宾县| 宽城| 山阳县| 治县。| 怀仁县| 陇南市| 应城市| 远安县| 鹤壁市| 嵩明县|