risinglight 0.2.0

An OLAP database system for educational purpose
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- sql: |
    explain select count(*) from t
  desc: count(*) is special
  before:
    - create table t(v int)
  tasks:
    - print

- sql: |
    explain select count(*) + 1 from t
  desc: count(*) with projection
  before:
    - create table t(v int)
  tasks:
    - print