Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
c8b42a61
Commit
c8b42a61
authored
Aug 04, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update flow chart.
parent
439a2af0
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
92 additions
and
100 deletions
+92
-100
src/backend/optimizer/path/allpaths.c
src/backend/optimizer/path/allpaths.c
+3
-5
src/backend/optimizer/path/indxpath.c
src/backend/optimizer/path/indxpath.c
+2
-3
src/backend/optimizer/path/mergeutils.c
src/backend/optimizer/path/mergeutils.c
+2
-3
src/tools/backend/flow.fig
src/tools/backend/flow.fig
+66
-71
src/tools/backend/flow.jpg
src/tools/backend/flow.jpg
+0
-0
src/tools/backend/index.html
src/tools/backend/index.html
+19
-18
No files found.
src/backend/optimizer/path/allpaths.c
View file @
c8b42a61
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/allpaths.c,v 1.1
7 1998/07/18 04:22:29
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/allpaths.c,v 1.1
8 1998/08/04 00:42:07
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -105,7 +105,6 @@ static void
...
@@ -105,7 +105,6 @@ static void
find_rel_paths
(
Query
*
root
,
List
*
rels
)
find_rel_paths
(
Query
*
root
,
List
*
rels
)
{
{
List
*
temp
;
List
*
temp
;
RelOptInfo
*
rel
;
List
*
lastpath
;
List
*
lastpath
;
foreach
(
temp
,
rels
)
foreach
(
temp
,
rels
)
...
@@ -113,8 +112,8 @@ find_rel_paths(Query *root, List *rels)
...
@@ -113,8 +112,8 @@ find_rel_paths(Query *root, List *rels)
List
*
sequential_scan_list
;
List
*
sequential_scan_list
;
List
*
rel_index_scan_list
;
List
*
rel_index_scan_list
;
List
*
or_index_scan_list
;
List
*
or_index_scan_list
;
RelOptInfo
*
rel
=
(
RelOptInfo
*
)
lfirst
(
temp
);
rel
=
(
RelOptInfo
*
)
lfirst
(
temp
);
sequential_scan_list
=
lcons
(
create_seqscan_path
(
rel
),
sequential_scan_list
=
lcons
(
create_seqscan_path
(
rel
),
NIL
);
NIL
);
...
@@ -125,8 +124,7 @@ find_rel_paths(Query *root, List *rels)
...
@@ -125,8 +124,7 @@ find_rel_paths(Query *root, List *rels)
rel
->
clauseinfo
,
rel
->
clauseinfo
,
rel
->
joininfo
);
rel
->
joininfo
);
or_index_scan_list
=
or_index_scan_list
=
create_or_index_paths
(
root
,
rel
,
rel
->
clauseinfo
);
create_or_index_paths
(
root
,
rel
,
rel
->
clauseinfo
);
rel
->
pathlist
=
add_pathlist
(
rel
,
rel
->
pathlist
=
add_pathlist
(
rel
,
sequential_scan_list
,
sequential_scan_list
,
...
...
src/backend/optimizer/path/indxpath.c
View file @
c8b42a61
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.2
3 1998/08/03 05:49:19
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.2
4 1998/08/04 00:42:08
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -1291,8 +1291,7 @@ create_index_paths(Query *root,
...
@@ -1291,8 +1291,7 @@ create_index_paths(Query *root,
if
(
!
join
||
temp
)
if
(
!
join
||
temp
)
{
/* restriction, ordering scan */
{
/* restriction, ordering scan */
temp_path
=
create_index_path
(
root
,
rel
,
index
,
clausegroup
,
join
);
temp_path
=
create_index_path
(
root
,
rel
,
index
,
clausegroup
,
join
);
temp_node
=
temp_node
=
lcons
(
temp_path
,
NIL
);
lcons
(
temp_path
,
NIL
);
ip_list
=
nconc
(
ip_list
,
temp_node
);
ip_list
=
nconc
(
ip_list
,
temp_node
);
}
}
}
}
...
...
src/backend/optimizer/path/mergeutils.c
View file @
c8b42a61
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/mergeutils.c,v 1.
5 1998/02/26 04:32:41
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/Attic/mergeutils.c,v 1.
6 1998/08/04 00:42:09
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -61,8 +61,7 @@ group_clauses_by_order(List *clauseinfo_list,
...
@@ -61,8 +61,7 @@ group_clauses_by_order(List *clauseinfo_list,
p_ordering
.
ordtype
=
MERGE_ORDER
;
p_ordering
.
ordtype
=
MERGE_ORDER
;
p_ordering
.
ord
.
merge
=
merge_ordering
;
p_ordering
.
ord
.
merge
=
merge_ordering
;
xmergeinfo
=
xmergeinfo
=
match_order_mergeinfo
(
&
p_ordering
,
mergeinfo_list
);
match_order_mergeinfo
(
&
p_ordering
,
mergeinfo_list
);
if
(
inner_relid
==
leftop
->
varno
)
if
(
inner_relid
==
leftop
->
varno
)
{
{
keys
=
makeNode
(
JoinKey
);
keys
=
makeNode
(
JoinKey
);
...
...
src/tools/backend/flow.fig
View file @
c8b42a61
...
@@ -3,134 +3,129 @@ Landscape
...
@@ -3,134 +3,129 @@ Landscape
Center
Center
Inches
Inches
1200 2
1200 2
6 450 375 2250 1575
4 0 -1 0 0 0 24 0.0000 4 255 735 450 1515 Flow\001
4 0 -1 0 0 0 24 0.0000 4 330 1800 450 675 PostgreSQL\001
4 0 -1 0 0 0 24 0.0000 4 330 1290 450 1095 Program\001
-6
2 1 0 1 -1 7 0 0 -1 0.000 0 0 -1 0 0 1
8475 2175
2 1 0 1 -1 7 0 0 -1 0.000 0 0 -1 0 0 1
8475 2175
2 4 0 1 -1 29 0 0 20 0.000 0 0 7 0 0 5
2850 13200 450 13200 450 12600 2850 12600 2850 13200
2 1 0 2 29 7 0 0 -1 0.000 0 0 -1 1 1 2
2 1 0 2 29 7 0 0 -1 0.000 0 0 -1 1 1 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
1650 12600 1650 12000
7950 10200 7950 10800
2 1 0 1 -1 7 0 0 -1 0.000 0 0 -1 0 0 1
8400 375
2 1 0 1 -1 7 0 0 -1 0.000 0 0 -1 0 0 1
8400 375
2 4 0 1 -1 29 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 29 0 0 20 0.000 0 0 7 0 0 5
9225 13200 6825 13200 6825 12600 9225 12600 9225 132
00
2775 11400 375 11400 375 10800 2775 10800 2775 114
00
2 1 0 2 29 7 0 0 -1 0.000 0 0 -1 1 1 2
2 1 0 2 29 7 0 0 -1 0.000 0 0 -1 1 1 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
8025 11925 8025 12525
1575 10800 1575 10200
2 4 0 1 -1 29 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 29 0 0 20 0.000 0 0 7 0 0 5
6000 13200 3600 13200 3600 12600 6000 12600 6000 13200
9150 11400 6750 11400 6750 10800 9150 10800 9150 11400
2 4 0 1 -1 29 0 0 20 0.000 0 0 7 0 0 5
5925 11400 3525 11400 3525 10800 5925 10800 5925 11400
2 1 0 2 29 7 0 0 -1 0.000 0 0 -1 1 1 2
2 1 0 2 29 7 0 0 -1 0.000 0 0 -1 1 1 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
4
800 12600 4800 120
00
4
725 10800 4725 102
00
2 4 0 1 -1 29 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 29 0 0 20 0.000 0 0 7 0 0 5
4
425 14400 2025 14400 2025 13800 4425 13800 4425 144
00
4
350 12600 1950 12600 1950 12000 4350 12000 4350 126
00
2 1 0 2 29 7 0 0 -1 0.000 0 0 -1 1 1 2
2 1 0 2 29 7 0 0 -1 0.000 0 0 -1 1 1 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
3
225 13200 3225 138
00
3
150 11400 3150 120
00
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
2
625 6675 2625 72
75
2
550 4875 2550 54
75
2 4 0 1 -1 4 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 4 0 0 20 0.000 0 0 7 0 0 5
3
825 3975 1425 3975 1425 3375 3825 3375 3825 39
75
3
750 2175 1350 2175 1350 1575 3750 1575 3750 21
75
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
3
825 6675 1425 6675 1425 6075 3825 6075 3825 66
75
3
750 4875 1350 4875 1350 4275 3750 4275 3750 48
75
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
3
825 9075 1425 9075 1425 8475 3825 8475 3825 90
75
3
750 7275 1350 7275 1350 6675 3750 6675 3750 72
75
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
2
625 7875 2625 84
75
2
550 6075 2550 66
75
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
3
825 10275 1425 10275 1425 9675 3825 9675 3825 102
75
3
750 8475 1350 8475 1350 7875 3750 7875 3750 84
75
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
2
625 9075 2625 96
75
2
550 7275 2550 78
75
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
2
625 10275 2625 108
75
2
550 8475 2550 90
75
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
7
725 7875 5325 7875 5325 7275 7725 7275 7725 78
75
7
650 6075 5250 6075 5250 5475 7650 5475 7650 60
75
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
2
625 5775 2625 60
75
2
550 3975 2550 42
75
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
3825 11475 1425 11475 1425 10875 3825 10875 3825 11475
3750 9675 1350 9675 1350 9075 3750 9075 3750 9675
2 1 0 2 31 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.00
2625 5175 2625 5775
2 4 0 1 -1 31 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 31 0 0 20 0.000 0 0 7 0 0 5
3
825 5175 1425 5175 1425 4575 3825 4575 3825 51
75
3
750 3375 1350 3375 1350 2775 3750 2775 3750 33
75
2 4 0 1 -1 31 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 31 0 0 20 0.000 0 0 7 0 0 5
7
725 5175 5325 5175 5325 4575 7725 4575 7725 51
75
7
650 3375 5250 3375 5250 2775 7650 2775 7650 33
75
2 4 0 1 -1 17 1 0 20 0.000 0 0 40 0 0 5
2 4 0 1 -1 17 1 0 20 0.000 0 0 40 0 0 5
87
75 11775 375 11775 375 5625 8775 5625 8775 117
75
87
00 9975 300 9975 300 3825 8700 3825 8700 99
75
2 4 0 1 -1 0 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 0 0 0 20 0.000 0 0 7 0 0 5
7
725 3375 5325 3375 5325 2775 7725 2775 7725 33
75
7
650 1575 5250 1575 5250 975 7650 975 7650 15
75
2 4 0 1 -1 23 0 0 20 0.000 0 0 8 0 0 5
2 4 0 1 -1 23 0 0 20 0.000 0 0 8 0 0 5
2
925 15675 525 15675 525 15075 2925 15075 2925 156
75
2
850 13875 450 13875 450 13275 2850 13275 2850 138
75
2 1 0 2 25 7 0 0 -1 0.000 0 0 -1 1 0 2
2 1 0 2 25 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.50
0 0 2.00 150.00 180.50
2
625 2775 2625 33
75
2
550 975 2550 15
75
2 4 0 1 -1 26 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 26 0 0 20 0.000 0 0 7 0 0 5
3
825 2775 1425 2775 1425 2175 3825 2175 3825 27
75
3
750 975 1350 975 1350 375 3750 375 3750 9
75
2 1 0 2 20 7 0 0 -1 0.000 0 0 -1 1 0 2
2 1 0 2 20 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
2
625 3975 2625 45
75
2
550 2175 2550 27
75
2 1 0 2 20 7 0 0 -1 0.000 0 0 -1 1 0 2
2 1 0 2 20 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
2
625 3975 6525 45
75
2
550 2175 6450 27
75
2 1 1 2 -1 7 0 0 -1 4.000 0 0 -1 1 1 2
2 1 1 2 -1 7 0 0 -1 4.000 0 0 -1 1 1 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
48
90 3708 5325 31
50
48
15 1908 5250 13
50
2 4 0 1 -1 29 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 29 0 0 20 0.000 0 0 7 0 0 5
7
725 14400 5325 14400 5325 13800 7725 13800 7725 144
00
7
650 12600 5250 12600 5250 12000 7650 12000 7650 126
00
2 1 0 2 29 7 0 0 -1 0.000 0 0 -1 1 1 2
2 1 0 2 29 7 0 0 -1 0.000 0 0 -1 1 1 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
6
450 13200 6450 138
00
6
375 11400 6375 120
00
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
2 1 0 2 8 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
3
825 7575 5325 75
75
3
750 5775 5250 57
75
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
2 4 0 1 -1 8 0 0 20 0.000 0 0 7 0 0 5
3
825 7875 1425 7875 1425 7275 3825 7275 3825 78
75
3
750 6075 1350 6075 1350 5475 3750 5475 3750 60
75
2 1 1 2 -1 7 0 0 -1 3.000 0 0 -1 1 1 2
2 1 1 2 -1 7 0 0 -1 3.000 0 0 -1 1 1 2
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
4735 3324 5370 3093
4660 1524 5295 1293
2 1 0 2 31 7 0 0 -1 0.000 0 0 -1 1 0 2
0 0 2.00 150.00 180.00
2550 3300 2550 3900
3 0 0 2 8 7 0 0 -1 0.000 0 1 0 5
3 0 0 2 8 7 0 0 -1 0.000 0 1 0 5
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
7
725 7575 8325 7275 8325 6375 7800 5775 2625 57
75
7
650 5775 8250 5475 8250 4575 7725 3975 2550 39
75
3 0 0 2 8 7 0 0 -1 0.000 0 1 0 5
3 0 0 2 8 7 0 0 -1 0.000 0 1 0 5
0 0 2.00 150.00 180.00
0 0 2.00 150.00 180.00
1
425 11175 825 10725 825 6225 1575 5775 2625 57
75
1
350 9375 750 8925 750 4425 1500 3975 2550 39
75
4 1 -1 0 0 28 18 0.0000 4 195 1050 1
635 129
90 Utilities\001
4 1 -1 0 0 28 18 0.0000 4 195 1050 1
560 111
90 Utilities\001
4 1 -1 0 0 28 18 0.0000 4 240 2325
8040 129
90 Storage Managers\001
4 1 -1 0 0 28 18 0.0000 4 240 2325
7965 111
90 Storage Managers\001
4 1 -1 0 0 0 18 0.0000 4 255 840 4
800 129
75 Catalog\001
4 1 -1 0 0 0 18 0.0000 4 255 840 4
725 111
75 Catalog\001
4 1 -1 0 0 28 18 0.0000 4 195 2100 3
210 142
05 Access Methods\001
4 1 -1 0 0 28 18 0.0000 4 195 2100 3
135 124
05 Access Methods\001
4 1 7 0 0 28 18 0.0000 4 195 1980 2
610 90
30 Generate Paths\001
4 1 7 0 0 28 18 0.0000 4 195 1980 2
535 72
30 Generate Paths\001
4 1 7 0 0 28 18 0.0000 4 195 1485 6
525 78
30 Commands\001
4 1 7 0 0 28 18 0.0000 4 195 1485 6
450 60
30 Commands\001
4 1 7 0 0 28 18 0.0000 4 195 1830 2
640 102
45 Generate Plan\001
4 1 7 0 0 28 18 0.0000 4 195 1830 2
565 84
45 Generate Plan\001
4 1 -1 0 0 28 18 0.0000 4 195 1470 2
610 37
65 Postmaster\001
4 1 -1 0 0 28 18 0.0000 4 195 1470 2
535 19
65 Postmaster\001
4 1 -1 0 0 28 18 0.0000 4 240 1110 6
510 49
50 Postgres\001
4 1 -1 0 0 28 18 0.0000 4 240 1110 6
435 31
50 Postgres\001
4 1 -1 0 0 28 18 0.0000 4 240 1110 2
625 49
65 Postgres\001
4 1 -1 0 0 28 18 0.0000 4 240 1110 2
550 31
65 Postgres\001
4 1 7 0 0 28 18 0.0000 4 195 1275 2
640 87
45 Rewrite &\001
4 1 7 0 0 28 18 0.0000 4 195 1275 2
565 69
45 Rewrite &\001
4 1 7 0 0 28 18 0.0000 4 255 1500 2
640 76
65 Traffic Cop\001
4 1 7 0 0 28 18 0.0000 4 255 1500 2
565 58
65 Traffic Cop\001
4 1 7 0 0 28 18 0.0000 4 195 825 2
610 64
50 Parser\001
4 1 7 0 0 28 18 0.0000 4 195 825 2
535 46
50 Parser\001
4 1 7 0 0 28 18 0.0000 4 195 1890 2
625 99
75 Choose Path &\001
4 1 7 0 0 28 18 0.0000 4 195 1890 2
550 81
75 Choose Path &\001
4 1 7 0 0 28 18 0.0000 4 195 1140 2
610 112
95 Executor\001
4 1 7 0 0 28 18 0.0000 4 195 1140 2
535 94
95 Executor\001
4 1 8 0 0 28 18 0.0000 4 240 795 4
530 75
00 utility\001
4 1 8 0 0 28 18 0.0000 4 240 795 4
455 57
00 utility\001
4 1 7 0 0 28 18 0.0000 4 240 825 6
525 75
45 Utility\001
4 1 7 0 0 28 18 0.0000 4 240 825 6
450 57
45 Utility\001
4 1 -1 0 0 28 18 0.0000 4 195 630 25
95 25
65 Main\001
4 1 -1 0 0 28 18 0.0000 4 195 630 25
20 7
65 Main\001
4 1 8 0 0 28 18 0.0000 4 240 1125 2
640 82
35 complex\001
4 1 8 0 0 28 18 0.0000 4 240 1125 2
565 64
35 complex\001
4 1 -1 0 0 0 18 0.0000 4 225 1425 6
525 141
75 Nodes / Lists\001
4 1 -1 0 0 0 18 0.0000 4 225 1425 6
450 123
75 Nodes / Lists\001
4 1 7 0 0 0 18 0.0000 4 255 645 6
525 31
50 Libpq\001
4 1 7 0 0 0 18 0.0000 4 255 645 6
450 13
50 Libpq\001
4 1 -1 0 0 0 18 0.0000 4 255 1095 1
725 154
50 Bootstrap\001
4 1 -1 0 0 0 18 0.0000 4 255 1095 1
650 136
50 Bootstrap\001
src/tools/backend/flow.jpg
View replaced file @
439a2af0
View file @
c8b42a61
74.4 KB
|
W:
|
H:
70.4 KB
|
W:
|
H:
2-up
Swipe
Onion skin
src/tools/backend/index.html
View file @
c8b42a61
...
@@ -13,32 +13,33 @@ by Bruce Momjian
...
@@ -13,32 +13,33 @@ by Bruce Momjian
<CENTER>
<CENTER>
<BR>
<BR>
<BR>
<BR>
<IMG
src=
"flow.jpg"
usemap=
"#flowmap"
alt=
"flowchart"
>
<IMG
src=
"flow.jpg"
usemap=
"#flowmap"
alt=
"flowchart"
border=
0
>
</CENTER>
</CENTER>
<MAP
name=
"flowmap"
>
<MAP
name=
"flowmap"
>
<AREA
COORDS=
"80,1
30,240,17
0"
HREF=
"backend_dirs.html#main"
>
<AREA
COORDS=
"80,1
0,240,5
0"
HREF=
"backend_dirs.html#main"
>
<AREA
COORDS=
"80,
210,240,25
0"
HREF=
"backend_dirs.html#postmaster"
>
<AREA
COORDS=
"80,
90,240,13
0"
HREF=
"backend_dirs.html#postmaster"
>
<AREA
COORDS=
"340,
170,500,21
0"
HREF=
"backend_dirs.html#libpq"
>
<AREA
COORDS=
"340,
50,500,9
0"
HREF=
"backend_dirs.html#libpq"
>
<AREA
COORDS=
"80,
290,240,33
0"
HREF=
"backend_dirs.html#tcop"
>
<AREA
COORDS=
"80,
170,240,21
0"
HREF=
"backend_dirs.html#tcop"
>
<AREA
COORDS=
"340,
290,500,33
0"
HREF=
"backend_dirs.html#tcop"
>
<AREA
COORDS=
"340,
170,500,21
0"
HREF=
"backend_dirs.html#tcop"
>
<AREA
COORDS=
"80,
390,240,43
0"
HREF=
"backend_dirs.html#parser"
>
<AREA
COORDS=
"80,
270,240,31
0"
HREF=
"backend_dirs.html#parser"
>
<AREA
COORDS=
"80,
470,240,51
0"
HREF=
"backend_dirs.html#tcop"
>
<AREA
COORDS=
"80,
350,240,39
0"
HREF=
"backend_dirs.html#tcop"
>
<AREA
COORDS=
"80,
550,240,59
0"
HREF=
"backend_dirs.html#optimizer"
>
<AREA
COORDS=
"80,
430,240,47
0"
HREF=
"backend_dirs.html#optimizer"
>
<AREA
COORDS=
"80,
530,240,67
0"
HREF=
"backend_dirs.html#optimizer/plan"
>
<AREA
COORDS=
"80,
410,240,55
0"
HREF=
"backend_dirs.html#optimizer/plan"
>
<AREA
COORDS=
"80,
710,240,75
0"
HREF=
"backend_dirs.html#executor"
>
<AREA
COORDS=
"80,
590,240,63
0"
HREF=
"backend_dirs.html#executor"
>
<AREA
COORDS=
"340,
470,500,51
0"
HREF=
"backend_dirs.html#commands"
>
<AREA
COORDS=
"340,
350,500,39
0"
HREF=
"backend_dirs.html#commands"
>
<AREA
COORDS=
"10,
820,170,87
0"
HREF=
"backend_dirs.html#utils"
>
<AREA
COORDS=
"10,
700,170,75
0"
HREF=
"backend_dirs.html#utils"
>
<AREA
COORDS=
"220,
820,380,86
0"
HREF=
"backend_dirs.html#catalog"
>
<AREA
COORDS=
"220,
700,380,74
0"
HREF=
"backend_dirs.html#catalog"
>
<AREA
COORDS=
"430,
820,600,87
0"
HREF=
"backend_dirs.html#storage"
>
<AREA
COORDS=
"430,
700,600,75
0"
HREF=
"backend_dirs.html#storage"
>
<AREA
COORDS=
"110,
900,280,95
0"
HREF=
"backend_dirs.html#access"
>
<AREA
COORDS=
"110,
780,280,83
0"
HREF=
"backend_dirs.html#access"
>
<AREA
COORDS=
"340,
900,500,95
0"
HREF=
"backend_dirs.html#nodes"
>
<AREA
COORDS=
"340,
780,500,83
0"
HREF=
"backend_dirs.html#nodes"
>
<AREA
COORDS=
"20,
990,180,103
0"
HREF=
"backend_dirs.html#bootstrap"
>
<AREA
COORDS=
"20,
870,180,91
0"
HREF=
"backend_dirs.html#bootstrap"
>
</MAP>
</MAP>
<CENTER><EM>
<CENTER><EM>
Click on an item to see more detail or look at the full
Click on an item to see more detail or look at the full
<A
HREF=
"backend_dirs.html"
>
index.
</A>
<A
HREF=
"backend_dirs.html"
>
index.
</A>
</EM></CENTER>
</EM></CENTER>
<BR>
<BR>
<BR>
<P>
<P>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment