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

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

本文整理了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

  1. @Override
  2. public void prepareJoinBatch() {
  3. left.prepareJoinBatch();
  4. right.prepareJoinBatch();
  5. }

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

  1. private static void prepareJoinBatch(Prepared prepared) {
  2. if (prepared.isQuery()) {
  3. int type = prepared.getType();
  4. if (type == CommandInterface.SELECT) {
  5. ((Query) prepared).prepareJoinBatch();
  6. } else if (type == CommandInterface.EXPLAIN ||
  7. type == CommandInterface.EXPLAIN_ANALYZE) {
  8. prepareJoinBatch(((Explain) prepared).getCommand());
  9. }
  10. }
  11. }

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

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

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

  1. @Override
  2. public void prepareJoinBatch() {
  3. left.prepareJoinBatch();
  4. right.prepareJoinBatch();
  5. }

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

  1. @Override
  2. public void prepareJoinBatch() {
  3. left.prepareJoinBatch();
  4. right.prepareJoinBatch();
  5. }

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

  1. private static void prepareJoinBatch(Prepared prepared) {
  2. if (prepared.isQuery()) {
  3. if (prepared.getType() == CommandInterface.SELECT) {
  4. ((Query) prepared).prepareJoinBatch();
  5. } else if (prepared.getType() == CommandInterface.EXPLAIN) {
  6. prepareJoinBatch(((Explain) prepared).getCommand());
  7. }
  8. }
  9. }

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

  1. private static void prepareJoinBatch(Prepared prepared) {
  2. if (prepared.isQuery()) {
  3. if (prepared.getType() == CommandInterface.SELECT) {
  4. ((Query) prepared).prepareJoinBatch();
  5. } else if (prepared.getType() == CommandInterface.EXPLAIN) {
  6. prepareJoinBatch(((Explain) prepared).getCommand());
  7. }
  8. }
  9. }

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

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

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

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

相关文章