mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 10:30:33 +03:00 
			
		
		
		
	Allow index use with OR clauses.
This commit is contained in:
		| @@ -7,7 +7,7 @@ | ||||
|  * | ||||
|  * | ||||
|  * IDENTIFICATION | ||||
|  *	  $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.41 1998/07/18 04:22:26 momjian Exp $ | ||||
|  *	  $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.42 1998/08/01 22:12:08 momjian Exp $ | ||||
|  * | ||||
|  * NOTES | ||||
|  *	  Every (plan) node in POSTGRES has an associated "out" routine which | ||||
| @@ -990,7 +990,7 @@ _outEState(StringInfo str, EState *node) | ||||
|  *	Stuff from relation.h | ||||
|  */ | ||||
| static void | ||||
| _outRel(StringInfo str, RelOptInfo *node) | ||||
| _outRelOptInfo(StringInfo str, RelOptInfo *node) | ||||
| { | ||||
| 	char		buf[500]; | ||||
|  | ||||
| @@ -1788,7 +1788,7 @@ _outNode(StringInfo str, void *obj) | ||||
| 				_outEState(str, obj); | ||||
| 				break; | ||||
| 			case T_RelOptInfo: | ||||
| 				_outRel(str, obj); | ||||
| 				_outRelOptInfo(str, obj); | ||||
| 				break; | ||||
| 			case T_TargetEntry: | ||||
| 				_outTargetEntry(str, obj); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user