/calcite-tutorial

Apache Calcite Tutorial

Primary LanguageJava

Apache Calcite Tutorial

This repository contains code which demonstrate the use of Apache Calcite as a library for SQL query planning.

First part of the tutorial can be found here.

To try the planner:

  1. ./gradlew build
  2. ./gradlew idea can generate intellij project.
  3. run main() inside SimpleQueryPlanner. It will output the logical plan.
  4. change the query to see other plans generated.