mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Remove the stub support we had for UNION JOIN; per discussion, this is
not likely ever to be implemented seeing it's been removed from SQL2003. This allows getting rid of the 'filter' version of yylex() that we had in parser.c, which should save at least a few microseconds in parsing.
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/optimizer/path/clausesel.c,v 1.78 2006/03/05 15:58:28 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/optimizer/path/clausesel.c,v 1.79 2006/03/07 01:00:15 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -449,8 +449,6 @@ clause_selectivity(PlannerInfo *root,
|
||||
cacheable = true;
|
||||
break;
|
||||
|
||||
case JOIN_UNION:
|
||||
/* unimplemented anyway... */
|
||||
case JOIN_IN:
|
||||
case JOIN_REVERSE_IN:
|
||||
case JOIN_UNIQUE_OUTER:
|
||||
|
Reference in New Issue
Block a user