org.teiid.query.sql.lang.Query.getSourceHint()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.8k)|赞(0)|评价(0)|浏览(621)

本文整理了Java中org.teiid.query.sql.lang.Query.getSourceHint方法的一些代码示例,展示了Query.getSourceHint的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.getSourceHint方法的具体详情如下:
包路径:org.teiid.query.sql.lang.Query
类名称:Query
方法名:getSourceHint

Query.getSourceHint介绍

暂无

代码示例

代码示例来源:origin: org.jboss.teiid/teiid-engine

  1. /**
  2. * This method will alias each of the select into elements to the corresponding column name in the
  3. * target table. This ensures that they will all be uniquely named.
  4. *
  5. * @param query
  6. * @throws QueryValidatorException
  7. */
  8. private Command rewriteSelectInto(Query query) throws TeiidProcessingException{
  9. Into into = query.getInto();
  10. try {
  11. List<ElementSymbol> allIntoElements = Util.deepClone(ResolverUtil.resolveElementsInGroup(into.getGroup(), metadata), ElementSymbol.class);
  12. Insert insert = new Insert(into.getGroup(), allIntoElements, Collections.emptyList());
  13. insert.setSourceHint(query.getSourceHint());
  14. query.setSourceHint(null);
  15. query.setInto(null);
  16. insert.setQueryExpression(query);
  17. return rewriteInsert(correctDatatypes(insert));
  18. } catch (QueryMetadataException e) {
  19. throw new QueryValidatorException(e);
  20. } catch (TeiidComponentException e) {
  21. throw new QueryValidatorException(e);
  22. }
  23. }

代码示例来源:origin: teiid/teiid

  1. /**
  2. * This method will alias each of the select into elements to the corresponding column name in the
  3. * target table. This ensures that they will all be uniquely named.
  4. *
  5. * @param query
  6. * @throws QueryValidatorException
  7. */
  8. private Command rewriteSelectInto(Query query) throws TeiidProcessingException{
  9. Into into = query.getInto();
  10. try {
  11. List<ElementSymbol> allIntoElements = Util.deepClone(ResolverUtil.resolveElementsInGroup(into.getGroup(), metadata), ElementSymbol.class);
  12. Insert insert = new Insert(into.getGroup(), allIntoElements, Collections.emptyList());
  13. insert.setSourceHint(query.getSourceHint());
  14. query.setSourceHint(null);
  15. query.setInto(null);
  16. insert.setQueryExpression(query);
  17. return rewriteInsert(correctDatatypes(insert));
  18. } catch (QueryMetadataException e) {
  19. throw new QueryValidatorException(e);
  20. } catch (TeiidComponentException e) {
  21. throw new QueryValidatorException(e);
  22. }
  23. }

代码示例来源:origin: org.teiid/teiid-engine

  1. /**
  2. * This method will alias each of the select into elements to the corresponding column name in the
  3. * target table. This ensures that they will all be uniquely named.
  4. *
  5. * @param query
  6. * @throws QueryValidatorException
  7. */
  8. private Command rewriteSelectInto(Query query) throws TeiidProcessingException{
  9. Into into = query.getInto();
  10. try {
  11. List<ElementSymbol> allIntoElements = Util.deepClone(ResolverUtil.resolveElementsInGroup(into.getGroup(), metadata), ElementSymbol.class);
  12. Insert insert = new Insert(into.getGroup(), allIntoElements, Collections.emptyList());
  13. insert.setSourceHint(query.getSourceHint());
  14. query.setSourceHint(null);
  15. query.setInto(null);
  16. insert.setQueryExpression(query);
  17. return rewriteInsert(correctDatatypes(insert));
  18. } catch (QueryMetadataException e) {
  19. throw new QueryValidatorException(e);
  20. } catch (TeiidComponentException e) {
  21. throw new QueryValidatorException(e);
  22. }
  23. }

代码示例来源:origin: teiid/teiid

  1. SetQuery query = (SetQuery)command;
  2. SourceHint previous = this.sourceHint;
  3. this.sourceHint = SourceHint.combine(previous, query.getProjectedQuery().getSourceHint());

代码示例来源:origin: org.jboss.teiid/teiid-engine

  1. SetQuery query = (SetQuery)command;
  2. SourceHint previous = this.sourceHint;
  3. this.sourceHint = SourceHint.combine(previous, query.getProjectedQuery().getSourceHint());

代码示例来源:origin: org.teiid/teiid-engine

  1. SetQuery query = (SetQuery)command;
  2. SourceHint previous = this.sourceHint;
  3. this.sourceHint = SourceHint.combine(previous, query.getProjectedQuery().getSourceHint());

代码示例来源:origin: org.jboss.teiid/teiid-engine

  1. append(SELECT);
  2. SourceHint sh = obj.getSourceHint();
  3. addSourceHint(sh);
  4. if (obj.getSelect() != null) {

代码示例来源:origin: org.teiid/teiid-engine

  1. append(SELECT);
  2. SourceHint sh = obj.getSourceHint();
  3. addSourceHint(sh);
  4. if (obj.getSelect() != null) {

代码示例来源:origin: teiid/teiid

  1. append(SELECT);
  2. SourceHint sh = obj.getSourceHint();
  3. addSourceHint(sh);
  4. if (obj.getSelect() != null) {

相关文章