1. Internal of duckdb
  2. Before you read
  3. 安装
  4. 架构
  5. 调试技巧
  6. Internal
  7. parser
    1. 标准SQL支持
    2. 扩展SQL支持
    3. parser实现
  8. binder
  9. optimizer
    1. logical plan
    2. 查询优化
      1. 表达式优化
      2. 子查询优化
      3. join优化
    3. 统计信息
    4. 查询计划生成
  10. executor
    1. physical plan
    2. pipeline
    3. vectorized execution
    4. 查询执行
      1. scan
      2. filter
      3. projection
      4. aggregate
      5. join
      6. sort
      7. limit
      8. union
      9. subquery
  11. storage
  12. extension
  13. Others
  14. FAQ
  15. Changelog
  16. The end