Skip to content

Commit

Permalink
(fix/doc): fix error link (#804)
Browse files Browse the repository at this point in the history
* doc: fix error link

Signed-off-by: caicancai <[email protected]>

* doc: fix error link

Signed-off-by: caicancai <[email protected]>

* Update docs/03-architecture-overview.md

Signed-off-by: Runji Wang <[email protected]>

---------

Signed-off-by: caicancai <[email protected]>
Signed-off-by: Runji Wang <[email protected]>
Co-authored-by: Runji Wang <[email protected]>
  • Loading branch information
caicancai and wangrunji0408 authored Nov 14, 2023
1 parent 904e528 commit 839b02e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/03-architecture-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ In database systems, there are a lot of logical operators. Here we list some:
* Join: join results from two executors. For example, `select * from a inner join b`.
* ...

The logical planner will do some simple mappings from bound statements to logical plans, so as to have a basic sketch of how this query will be processed. See [`src/logical_planner`](../src/logical_planner) for more information.
The logical planner will do some simple mappings from bound statements to logical plans, so as to have a basic sketch of how this query will be processed. See [`src/planner`](../src/planner) for more information.

The example SQL will have the following logical plan, which is a simple DAG: `Projection <- Aggregate <- TableScan`.

Expand Down

0 comments on commit 839b02e

Please sign in to comment.