Commit 1f00f0dc authored by Vadim B. Mikheev's avatar Vadim B. Mikheev

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

parent 056ba128
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * 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 ...@@ -174,6 +174,7 @@ typedef struct IndexScan
Scan scan; Scan scan;
List *indxid; List *indxid;
List *indxqual; List *indxqual;
List *indxqualorig;
IndexScanState *indxstate; IndexScanState *indxstate;
} IndexScan; } IndexScan;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment