org.h2.command.dml.Query.prepareJoinBatch()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(102)

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

Query.prepareJoinBatch介绍

[英]Prepare join batching.
[中]准备加入配料。

代码示例

代码示例来源:origin: com.h2database/h2

@Override
public void prepareJoinBatch() {
  left.prepareJoinBatch();
  right.prepareJoinBatch();
}

代码示例来源:origin: com.h2database/h2

private static void prepareJoinBatch(Prepared prepared) {
  if (prepared.isQuery()) {
    int type = prepared.getType();
    if (type == CommandInterface.SELECT) {
      ((Query) prepared).prepareJoinBatch();
    } else if (type == CommandInterface.EXPLAIN ||
        type == CommandInterface.EXPLAIN_ANALYZE) {
      prepareJoinBatch(((Explain) prepared).getCommand());
    }
  }
}

代码示例来源:origin: com.h2database/h2

session.pushSubQueryInfo(masks, filters, filter, select.getSortOrder());
try {
  ((ViewIndex) index).getQuery().prepareJoinBatch();
} finally {
  session.popSubQueryInfo();

代码示例来源:origin: com.eventsourcing/h2

@Override
public void prepareJoinBatch() {
  left.prepareJoinBatch();
  right.prepareJoinBatch();
}

代码示例来源:origin: org.wowtools/h2

@Override
public void prepareJoinBatch() {
  left.prepareJoinBatch();
  right.prepareJoinBatch();
}

代码示例来源:origin: com.eventsourcing/h2

private static void prepareJoinBatch(Prepared prepared) {
  if (prepared.isQuery()) {
    if (prepared.getType() == CommandInterface.SELECT) {
      ((Query) prepared).prepareJoinBatch();
    } else if (prepared.getType() == CommandInterface.EXPLAIN) {
      prepareJoinBatch(((Explain) prepared).getCommand());
    }
  }
}

代码示例来源:origin: org.wowtools/h2

private static void prepareJoinBatch(Prepared prepared) {
  if (prepared.isQuery()) {
    if (prepared.getType() == CommandInterface.SELECT) {
      ((Query) prepared).prepareJoinBatch();
    } else if (prepared.getType() == CommandInterface.EXPLAIN) {
      prepareJoinBatch(((Explain) prepared).getCommand());
    }
  }
}

代码示例来源:origin: com.eventsourcing/h2

session.pushSubQueryInfo(masks, filters, filter, select.getSortOrder());
try {
  ((ViewIndex) index).getQuery().prepareJoinBatch();
} finally {
  session.popSubQueryInfo();

代码示例来源:origin: org.wowtools/h2

session.pushSubQueryInfo(masks, filters, filter, select.getSortOrder());
try {
  ((ViewIndex) index).getQuery().prepareJoinBatch();
} finally {
  session.popSubQueryInfo();

相关文章