Commit 512690f
authored
Refactor column storage to row storage (#49)
* refactor: clear useless code and dependencies
* feat: impl eval_column for tp
* feat: impl storage for tp
* feat: impl dml(insert/values/seq_scan/project) and ddl(create) for tp
* feat: impl dml(filter) for tp
* feat: impl dml(sort) for tp
* feat: impl dml(limit) for tp
* feat: `SeqScan` supports Projection and Limit pushdown
* style: new dql
* feat: impl dql(hash_join) for tp
* feat: impl `on filter` for dql(hash_join)
* feat: impl `repeat join` for dql(hash_join)
* style: remove ap
* perf: use Arc pointers to encapsulate `DataValue` and `ColumnCatalog` to avoid copy loss
* docs: rewrite README.md and fix `hash_join` bug
* style: version reset1 parent 915f01b commit 512690f
109 files changed
Lines changed: 2091 additions & 4346 deletions
File tree
- src
- binder
- catalog
- execution_v1
- physical_plan
- volcano_executor
- join
- execution
- executor
- ddl
- dml
- dql
- join
- parallel
- physical_plan
- physical
- runtime
- expression
- optimizer
- core
- heuristic
- rule
- parser
- planner
- operator
- storage
- types
- util
- static/images
- tests/sqllogictest/src
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | 12 | | |
14 | 13 | | |
15 | 14 | | |
16 | 15 | | |
17 | 16 | | |
18 | | - | |
19 | | - | |
20 | 17 | | |
21 | | - | |
22 | 18 | | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | 19 | | |
29 | | - | |
30 | 20 | | |
31 | 21 | | |
32 | 22 | | |
33 | 23 | | |
34 | | - | |
35 | 24 | | |
36 | 25 | | |
37 | 26 | | |
38 | 27 | | |
39 | | - | |
40 | | - | |
41 | 28 | | |
42 | | - | |
43 | 29 | | |
44 | 30 | | |
| 31 | + | |
45 | 32 | | |
46 | 33 | | |
47 | 34 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
| 5 | + | |
| 6 | + | |
5 | 7 | | |
6 | | - | |
7 | | - | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | | - | |
32 | | - | |
33 | | - | |
34 | | - | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
39 | | - | |
40 | | - | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
41 | 16 | | |
42 | | - | |
43 | | - | |
44 | | - | |
| 17 | + | |
45 | 18 | | |
46 | | - | |
47 | | - | |
48 | | - | |
| 19 | + | |
49 | 20 | | |
50 | | - | |
51 | | - | |
52 | | - | |
| 21 | + | |
53 | 22 | | |
54 | 23 | | |
| 24 | + | |
| 25 | + | |
55 | 26 | | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
68 | | - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
69 | 82 | | |
70 | 83 | | |
71 | 84 | | |
| |||
0 commit comments