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
50034a85
Commit
50034a85
authored
Feb 15, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
optimizer rename
parent
c5449d53
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
src/backend/optimizer/path/allpaths.c
src/backend/optimizer/path/allpaths.c
+2
-2
src/backend/optimizer/path/indxpath.c
src/backend/optimizer/path/indxpath.c
+2
-2
src/include/optimizer/paths.h
src/include/optimizer/paths.h
+2
-2
No files found.
src/backend/optimizer/path/allpaths.c
View file @
50034a85
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/allpaths.c,v 1.3
7 1999/02/15 05:21:03
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/allpaths.c,v 1.3
8 1999/02/15 05:28:09
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -116,7 +116,7 @@ set_base_rel_pathlist(Query *root, List *rels)
sequential_scan_list
=
lcons
(
create_seqscan_path
(
rel
),
NIL
);
rel_index_scan_list
=
find
_index_paths
(
root
,
rel_index_scan_list
=
create
_index_paths
(
root
,
rel
,
find_relation_indices
(
root
,
rel
),
rel
->
restrictinfo
,
...
...
src/backend/optimizer/path/indxpath.c
View file @
50034a85
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.4
8 1999/02/15 05:21:04
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.4
9 1999/02/15 05:28:09
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -99,7 +99,7 @@ static bool function_index_operand(Expr *funcOpnd, RelOptInfo *rel, RelOptInfo *
*
*/
List
*
find
_index_paths
(
Query
*
root
,
create
_index_paths
(
Query
*
root
,
RelOptInfo
*
rel
,
List
*
indices
,
List
*
restrictinfo_list
,
...
...
src/include/optimizer/paths.h
View file @
50034a85
...
...
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: paths.h,v 1.1
8 1999/02/15 03:59:28
momjian Exp $
* $Id: paths.h,v 1.1
9 1999/02/15 05:28:10
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -27,7 +27,7 @@ extern RelOptInfo *make_one_rel(Query *root, List *rels);
* indxpath.h
* routines to generate index paths
*/
extern
List
*
find
_index_paths
(
Query
*
root
,
RelOptInfo
*
rel
,
List
*
indices
,
extern
List
*
create
_index_paths
(
Query
*
root
,
RelOptInfo
*
rel
,
List
*
indices
,
List
*
restrictinfo_list
,
List
*
joininfo_list
);
...
...
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