mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
More optimizer speedups.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/joinpath.c,v 1.19 1999/02/10 21:02:38 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/joinpath.c,v 1.20 1999/02/11 14:58:52 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -327,7 +327,7 @@ match_unsorted_outer(RelOptInfo *joinrel,
|
||||
|
||||
outerpath = (Path *) lfirst(i);
|
||||
|
||||
outerpath_ordering = outerpath->path_order;
|
||||
outerpath_ordering = outerpath->pathorder;
|
||||
|
||||
if (outerpath_ordering)
|
||||
{
|
||||
@ -470,7 +470,7 @@ match_unsorted_inner(RelOptInfo *joinrel,
|
||||
|
||||
innerpath = (Path *) lfirst(i);
|
||||
|
||||
innerpath_ordering = innerpath->path_order;
|
||||
innerpath_ordering = innerpath->pathorder;
|
||||
|
||||
if (innerpath_ordering)
|
||||
{
|
||||
|
Reference in New Issue
Block a user