mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Allow index use with OR clauses.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.33 1998/07/18 04:22:26 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.34 1998/08/01 22:12:09 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Most of the read functions for plan nodes are tested. (In fact, they
|
||||
@ -1218,11 +1218,11 @@ _readEState()
|
||||
*/
|
||||
|
||||
/* ----------------
|
||||
* _readRel
|
||||
* _readRelOptInfo
|
||||
* ----------------
|
||||
*/
|
||||
static RelOptInfo *
|
||||
_readRel()
|
||||
_readRelOptInfo()
|
||||
{
|
||||
RelOptInfo *local_node;
|
||||
char *token;
|
||||
@ -1991,7 +1991,7 @@ parsePlanString(void)
|
||||
else if (!strncmp(token, "ESTATE", length))
|
||||
return_value = _readEState();
|
||||
else if (!strncmp(token, "RELOPTINFO", length))
|
||||
return_value = _readRel();
|
||||
return_value = _readRelOptInfo();
|
||||
else if (!strncmp(token, "TARGETENTRY", length))
|
||||
return_value = _readTargetEntry();
|
||||
else if (!strncmp(token, "RTE", length))
|
||||
|
Reference in New Issue
Block a user