diff options
| author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1998-11-22 10:45:09 +0000 |
|---|---|---|
| committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1998-11-22 10:45:09 +0000 |
| commit | 1f00f0dc2e49e5fcd820e3a734ccb53dfa83f3bb (patch) | |
| tree | 916aa557dddd326eec0804ce74426dfd773e4ce0 /src/include/nodes/plannodes.h | |
| parent | 056ba1288115f8cfa156a742ca4af3b2547dc663 (diff) | |
| download | postgresql-1f00f0dc2e49e5fcd820e3a734ccb53dfa83f3bb.tar.gz | |
Added indxqualorig to IndexScan: fix for using indices in OR.
Diffstat (limited to 'src/include/nodes/plannodes.h')
| -rw-r--r-- | src/include/nodes/plannodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index 1731b1a2f5..f0b8ecbb67 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -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; |
