Skip to content

Commit

Permalink
doc: fix error link
Browse files Browse the repository at this point in the history
Signed-off-by: caicancai <[email protected]>
  • Loading branch information
caicancai committed Nov 13, 2023
1 parent 0ac0785 commit 86f012b
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/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/logical_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 86f012b

Please sign in to comment.