Added indxqualorig to IndexScan: fix for using indices in OR.

This commit is contained in:
Vadim B. Mikheev 1998-11-22 10:45:09 +00:00
parent 056ba12881
commit 1f00f0dc2e
1 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: plannodes.h,v 1.18 1998/09/01 04:36:46 momjian Exp $
* $Id: plannodes.h,v 1.19 1998/11/22 10:45:09 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@ -174,6 +174,7 @@ typedef struct IndexScan
Scan scan;
List *indxid;
List *indxqual;
List *indxqualorig;
IndexScanState *indxstate;
} IndexScan;